ntrp
v2.1.0
Published
Interpolate a templated string using `{{` and `}}` delimiters, and the key/values from an object.
Downloads
2
Maintainers
Readme
NTRP
Interpolate a templated string using
{{
and}}
delimiters, and the key/values from an object.
Install
npm i -S ntrp
or yarn add ntrp
Usage
//Keys in both the template string and object are case-insensitive.
const str = ntrp('{{greeting}} {{GREETING}}, {{entity}}!', {
greeting: 'Hello',
ENTITY: 'World',
})
console.log(str) // "Hello Hello, World!"
Test
npm i && npm t
License
MIT