@aller/blink
Version:
A library for tracking user behaviour.
9 lines • 321 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.round = void 0;
function round(value, decimals) {
if (decimals === void 0) { decimals = 0; }
return Number(Math.round(Number(value + "e" + decimals)) + "e-" + decimals);
}
exports.round = round;
//# sourceMappingURL=round.js.map