4.1.2
Fixes a regression where helpers passed to the renderer function were not being called.
var template = require("./template.stache");
template(data, {
someHelper: function(){
return "this works again";
}
});
Fixes a regression where helpers passed to the renderer function were not being called.
var template = require("./template.stache");
template(data, {
someHelper: function(){
return "this works again";
}
});