Skip to content

Instantly share code, notes, and snippets.

@alufers
Created December 29, 2017 14:14
Show Gist options
  • Save alufers/f04f10eadbf0502055a0aa12dca88bc7 to your computer and use it in GitHub Desktop.
Save alufers/f04f10eadbf0502055a0aa12dca88bc7 to your computer and use it in GitHub Desktop.
A tagged template literal that does nothing
function normal (template, ...expressions) {
return template.reduce((accumulator, part, i) => {
return accumulator + expressions[i - 1] + part
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment