I'm trying to create a custom helper to format a value, the ember-cli docs seem to indicate I either need to export makeBoundHelper from within my helper file, or registerBoundHelper from within app.js whilst importing the previously created helper function.
Is my understanding of this correct? Or can you use registerBoundHelper from within a helper file and have it register correctly.
EDIT
related code and error info below:
https://github.com/ridget/transactions/blob/master/app/helpers/to-currency.js
Just pushed that up, using registerBoundHelper results in "Uncaught TypeError: undefined is not a function"
http://iamstef.net/ember-cli/ under resolving handlebars helpers seems to indicate that I can only utilise registerBoundHelper from within app.js but not sure if this is the case or im just doing it wrong.