UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

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;