Skip to content

Instantly share code, notes, and snippets.

@Mati365
Created September 9, 2015 14:16
Show Gist options
  • Save Mati365/cf23bf0f8280c4a102e3 to your computer and use it in GitHub Desktop.
Save Mati365/cf23bf0f8280c4a102e3 to your computer and use it in GitHub Desktop.
String.prototype['format'] = function(...params: any[]): string {
return this.replace(/\{(\w*)\}/g, (match, val) => {
return isNaN(val) ? params[0][val] : params[val];
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment