Skip to content

Instantly share code, notes, and snippets.

@RReverser
Last active August 29, 2015 14:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RReverser/3463103840d0706aa80d to your computer and use it in GitHub Desktop.
Save RReverser/3463103840d0706aa80d to your computer and use it in GitHub Desktop.
function Template(str, data) {
return str.replace(/\${([^}]+)}/g, (_, name) => data[name]);
}
var answer = 42;
(function () {
var answer = 60;
console.log(Template('Answer is ${answer}', {answer}));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment