6e5e1bb631c8bdf9bd4c6feabaa4f65d9b48f1e2
tlt
templates done right
Usage
We recommend the use of TypeScript for best in class Intellisense
import { Tlt } from 'tlt'
let myTlt = new Tlt('my {{somePlaceholder}} are {{anotherPlaceholder}}!')
let appliedString = myTlt.applyData({
"somePlaceholder": "horses",
"anotherPlaceholder": "awesome"
})
// appliedString will be 'my horses are awesome!'
Description
Languages
TypeScript
100%