Module: ember-glimmer
Create a bound helper. Accepts a function that receives the ordered and hash parameters from the template. If a bound property was provided in the template, it will be resolved to its value and any changes to the bound property cause the helper function to be re-run with the updated values.
params - An array of resolved ordered parameters.hash - An object containing the hash parameters.For example:
{{x-capitalize foo}}
Assuming foo was set to "bar", the bound helper would receive ["bar"] as its first argument, and an empty hash as its second.
{{x-capitalize "foo"}}
The bound helper would receive ["foo"] as its first argument, and an empty hash as its second.
{{x-repeat "foo" count=repeatCount}}
Assuming that repeatCount resolved to 2, the bound helper would receive ["foo"] as its first argument, and { count: 2 } as its second.
Function
© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
http://emberjs.com/api/classes/Ember.HTMLBars.html