23 lines
1.0 KiB
JavaScript
23 lines
1.0 KiB
JavaScript
(function (factory) {
|
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
var v = factory(require, exports);
|
|
if (v !== undefined) module.exports = v;
|
|
}
|
|
else if (typeof define === "function" && define.amd) {
|
|
define(["require", "exports"], factory);
|
|
}
|
|
})(function (require, exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.floatSafeRemainder = void 0;
|
|
function floatSafeRemainder(val, step) {
|
|
const valDecCount = (val.toString().split('.')[1] || '').length;
|
|
const stepDecCount = (step.toString().split('.')[1] || '').length;
|
|
const decCount = Math.max(valDecCount, stepDecCount);
|
|
const valInt = parseInt(val.toFixed(decCount).replace('.', ''));
|
|
const stepInt = parseInt(step.toFixed(decCount).replace('.', ''));
|
|
return (valInt % stepInt) / Math.pow(10, decCount);
|
|
}
|
|
exports.floatSafeRemainder = floatSafeRemainder;
|
|
});
|
|
//# sourceMappingURL=math.js.map
|