Skip to content

Instantly share code, notes, and snippets.

@pietrom
Created April 20, 2018 09:55
Show Gist options
  • Select an option

  • Save pietrom/ca19874c1377a5be8d9363ced210b35e to your computer and use it in GitHub Desktop.

Select an option

Save pietrom/ca19874c1377a5be8d9363ced210b35e to your computer and use it in GitHub Desktop.
Replace placeholders in string template
function process(tpl, params) {
return Object.keys(params).reduce(function(acc, curr) { return acc.replace("[" + curr + "]", params[curr]);}, tpl)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment