UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

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