UNPKG

@johnsunam/roundoff

Version:

This moudule simply roundoff the floating number to the decimal place you supplied.

4 lines 150 B
module.exports = (value, precision) => { var multiplier = Math.pow(10, precision || 0); return Math.round(value * multiplier) / multiplier; }