I am trying to create a custom helper using Meteor. Following to the doc here: https://github.com/meteor/meteor/wiki/Handlebars
I have tried to define my helper as foll
Addition to
{{testHelper "value1" "value2"}}
Instead of passing a value as a parameter pass the function as parameter Here is the code for that
{{ testHelper1 (testHelper2 "value2") }}
cheers!!!!!