Skip to content

Instantly share code, notes, and snippets.

@kavun
Last active December 31, 2015 01:29
Show Gist options
  • Save kavun/7913936 to your computer and use it in GitHub Desktop.
Save kavun/7913936 to your computer and use it in GitHub Desktop.
function t(s, d) {
for(var p in d) {
s = s.replace(new RegExp('{'+ p +'}','g'), d[p]);
}
return s.replace(/{[^}]*}/g, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment