Skip to content

Instantly share code, notes, and snippets.

@ijse
Created September 3, 2014 02:56
Show Gist options
  • Save ijse/5d5facc7b1498956e33d to your computer and use it in GitHub Desktop.
Save ijse/5d5facc7b1498956e33d to your computer and use it in GitHub Desktop.
tiny template engine
// template helper
function tpl(t, d) {
var s = t;
if (!d) return s;
for (k in d) {
s = s.replace(new RegExp('\\${' + k + '}', 'g'), d[k]);
}
return s;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment