Current section

Files

Jump to
imagine_cms priv js hbrender.js
Raw

priv/js/hbrender.js

let Handlebars = require("./handlebars");
module.exports = (tpl_str, context) => {
return Handlebars.compile(tpl_str)(context);
}