template-literals
v1.0.0
Published
String templates using tagged template literals
Downloads
8
Readme
template-literals
String templates using tagged template literals
// Create a template
const template = tag `hi, ${'name'}!`
// Render the template
template({ name: 'amsul' }) // 'hi, amsul!'