
https://github.com/egoist/vegito
const vegito = require('vegito') vegito('hello {{ name }}', {name: 'world'}) //=> hello world vegito(`hello {{ name.toUpperCase().split('').join('-') }}`, {name: 'world'}) //=> hello W-O-R-L-D vegito(`hello {{ reverse('world') }}`, { reverse: str => str.split('').reverse().join('') }) //=> hello dlrow