Skip to content

Instantly share code, notes, and snippets.

@zakuroishikuro
Created November 13, 2022 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakuroishikuro/58a4c2e7d74930c5743dc249aa8b5b0c to your computer and use it in GitHub Desktop.
Save zakuroishikuro/58a4c2e7d74930c5743dc249aa8b5b0c to your computer and use it in GitHub Desktop.
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