ceil.js 206 B

1234567891011
  1. /**
  2. * Round value up with a custom radix.
  3. */
  4. function ceil(val, step){
  5. step = Math.abs(step || 1);
  6. return Math.ceil(val / step) * step;
  7. }
  8. module.exports = ceil;