marko/runtime/html/helper-createInlineTemplate.js
2017-01-02 15:53:38 -07:00

5 lines
130 B
JavaScript

var Template = require('./Template');
module.exports = function(path, renderFunc) {
return new Template(path, renderFunc);
};