Skip to content

Instantly share code, notes, and snippets.

@xyclos
Created September 28, 2019 19:18
Show Gist options
  • Save xyclos/d1404c8dff4872d83c80995c066e741e to your computer and use it in GitHub Desktop.
Save xyclos/d1404c8dff4872d83c80995c066e741e to your computer and use it in GitHub Desktop.
interface String {
copyTo(dest: string) : void
}
String.prototype.copyTo = function (dest: string) {
return copyFrom(dest, this.valueOf())
}
export { String as Source }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment