UNPKG

ndut-view

Version:

View Engine for Ndut Framework

9 lines (8 loc) 303 B
module.exports = function (text, locals) { const { getNdutConfig } = this.ndut.helper const { minify } = this.ndutView.helper const cfg = getNdutConfig('ndut-view') let result = this.ndutView.env.renderString(text, locals) if (cfg.minify) result = minify(result, cfg.minify) return result }