Skip to content

Instantly share code, notes, and snippets.

@djalmajr
Forked from katspaugh/template.js
Created July 5, 2017 16:45
Show Gist options
  • Save djalmajr/a1dd48050b680d93581e2be1814d7338 to your computer and use it in GitHub Desktop.
Save djalmajr/a1dd48050b680d93581e2be1814d7338 to your computer and use it in GitHub Desktop.
String.prototype.template
String.prototype.template = function (obj) {
return this.replace(
/{{(.+?)}}/g,
function (_, key) { return obj[key] }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment