UNPKG

mip-cli-custom

Version:

Command line interface for MIP

18 lines (15 loc) 344 B
/** * @file 模板渲染器引擎 * @author mengke01(kekee000@gmail.com) */ const etpl = require('etpl'); const engine = new etpl.Engine({ commandOpen: '{%', commandClose: '%}' }); module.exports = { render: function (template, data) { const renderer = engine.compile(template); return renderer(data); } };