Skip to content

4.1.2

Compare
Choose a tag to compare
@matthewp matthewp released this 09 Jun 17:37
· 37 commits to master since this release

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";
  }
});