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