Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 207 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 207 Bytes

template-literals

String templates using tagged template literals

// Create a template
const template = tag `hi, ${'name'}!`

// Render the template
template({ name: 'amsul' }) // 'hi, amsul!'