smarthbs/ts/smarthbs.helpers.ts
2017-03-25 20:23:47 +01:00

8 lines
240 B
TypeScript

import * as plugins from './smarthbs.plugins'
plugins.handlebars.registerHelper('__compile', (evaluationString, evaluationContext) => {
let template = plugins.handlebars.compile(evaluationString)
return template(evaluationContext)
})