Skip to content

Instantly share code, notes, and snippets.

@TrySound
Created August 7, 2015 18:33
Show Gist options
  • Save TrySound/a7d5bda99674fa4c0a2d to your computer and use it in GitHub Desktop.
Save TrySound/a7d5bda99674fa4c0a2d to your computer and use it in GitHub Desktop.
function template(txt, data) {
var key;
for(key in data) if(data.hasOwnProperty(key)) {
txt = txt.replace(new RegExp('\\{\\{\\s*' + key + '\\s*\\}\\}', 'g'), data[key]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment