An open API service indexing awesome lists of open source software.

https://github.com/amsul/template-literals

String templates using tagged template literals
https://github.com/amsul/template-literals

interpolation string string-interpolation string-manipulation template template-literals

Last synced: 9 months ago
JSON representation

String templates using tagged template literals

Awesome Lists containing this project

README

          

# template-literals

String templates using tagged template literals

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

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