UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

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;