Skip to content

Instantly share code, notes, and snippets.

@plugn
Created April 16, 2021 22:15
Show Gist options
  • Save plugn/c74ad0400da12411c5d63d04eab42648 to your computer and use it in GitHub Desktop.
Save plugn/c74ad0400da12411c5d63d04eab42648 to your computer and use it in GitHub Desktop.
function template(source, scope = {}) {
return String(source).replace(/\{\{(.+?)\}\}/gm, function(match, p1) {
const param = p1.trim()
return scope[param] || ''
}).replace(/ +/mg, ' ')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment