UNPKG

ember-app-scheduler

Version:

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

15 lines (9 loc) 210 B
/** * Returns a new function that will return the value */ function constant(value){ return function() { return value; }; } module.exports = constant;