UNPKG

apeman-tmpl-bud

Version:
24 lines (20 loc) 416 B
/** * @function _bud */ 'use strict' function _bud (tmpl, params, mode, force) { return { force, mode, tmpl: tmpl, data: { year: params.year || new Date().getFullYear(), params, generator: 'apeman-tmpl', today: new Date().toLocaleDateString(), pkg: require('../package.json'), _render: __dirname + '/../asset/_render.hbs' } } } module.exports = _bud;