Skip to content

Instantly share code, notes, and snippets.

@Semigradsky
Last active January 30, 2016 19:02
Show Gist options
  • Save Semigradsky/d5ec348d978f7d9146cb to your computer and use it in GitHub Desktop.
Save Semigradsky/d5ec348d978f7d9146cb to your computer and use it in GitHub Desktop.
function template(str, obj) {
return str.replace(/\{(\w+)\}/g, (_, x) => {
const value = obj[x];
return Array.isArray(value) ? value.join(', ') : value;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment