UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

15 lines (9 loc) 218 B
/** * Returns a function that gets a property of the passed object */ function prop(name){ return function(obj){ return obj[name]; }; } module.exports = prop;