UNPKG

oc-generic-template-renderer

Version:
9 lines (8 loc) 188 B
module.exports = (options, callback) => { try { const html = options.template(options.model); return callback(null, html); } catch (error) { return callback(error); } };