UNPKG

ember-app-scheduler

Version:

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

11 lines (8 loc) 197 B
/** * Floor value to full steps. */ function floor(val, step){ step = Math.abs(step || 1); return Math.floor(val / step) * step; } module.exports = floor;