round.js 225 B

123456789101112
  1. /**
  2. * Round number to a specific radix
  3. */
  4. function round(value, radix){
  5. radix = radix || 1; // default round 1
  6. return Math.round(value / radix) * radix;
  7. }
  8. module.exports = round;