Created
November 13, 2022 02:53
-
-
Save zakuroishikuro/58a4c2e7d74930c5743dc249aa8b5b0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Object.defineProperty(Object.prototype, "out", { | |
value() { | |
console.log(this.toString()); | |
return this; | |
}, | |
}); | |
interface Object { | |
out<T>(this: T): T; | |
} | |
"abc".out().slice(1).out(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment