helperOptions
The options argument passed to a helper function when called by a Helper Expression.
Object
When a helper function
is called by a Helper Expression, a helperOptions
object is passed with the following properties:
stache.registerHelper("myHelper", function(helperOptions){
helperOptions.fn //-> sectionRenderer(){}
helperOptions.inverse //-> sectionRenderer(){}
helperOptions.hash //-> Object
helperOptions.context //-> *
helperOptions.scope //-> Scope
helperOptions.option //-> Scope.Options
});