UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

12 lines (10 loc) 217 B
define(function(){ /** * Round value up with a custom radix. */ function ceil(val, step){ step = Math.abs(step || 1); return Math.ceil(val / step) * step; } return ceil; });