UNPKG

fly-js

Version:

A JavaScript utility library focusing on aviation

12 lines (8 loc) 238 B
/*jslint node: true */ "use strict"; var Rounder = function () { }; Rounder.prototype.round = function (value, roundTo) { return Math.round(value * Math.pow(10, roundTo)) / Math.pow(10, roundTo); }; module.exports = new Rounder();