UNPKG

ember-app-scheduler

Version:

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

11 lines (7 loc) 173 B
/** * Loops value inside range. */ function loop(val, min, max){ return val < min? max : (val > max? min : val); } module.exports = loop;