Accessing an Ember.Mixin within a custom handlebars helper
问题 Is there an elegant way of using methods defined in an Ember.Mixin object within a custom handlebars helper? For example, in my case I have a mixin, App.Format which contains a bunch of different methods for formatting numbers, dates, ect and I would like to make some of these methods accessible directly from templates via custom helpers (e.g. {{formatNumber 450324}} ). The reason I don't just put the method implementation directly in the helper instead of the mixin is that I also need these