1.0.0 • Published 7 years ago

string-to-template v1.0.0

Weekly downloads
13
License
MIT
Repository
github
Last release
7 years ago

string-to-template

ES6 template literal starting from a string. Common scenario when working from json config files.

Install

npm i string-to-template --save

Usage

const execute = require('string-to-template')

const result = execute("hello ${name}", { name: 'John'})
const another = execute("extension is \"${filename.split('.')[1]}\"", { filename: 'hi.json' })

License

MIT