UNPKG

apeman-tmpl-contrib-official

Version:
19 lines (17 loc) 384 B
/** * @file Evaluate template and render with coz. * @see {@link https://github.com/okunishinishi/coz|coz}. */ var coz = require('coz'), buds = require('apeman-tmpl-contrib-official'); coz.render([ buds['tmpl-contrib/README.md']({ //Template data }) ], function (err) { if (err) { console.error(err); } } );