NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/util/lib/math/fixed-base.js

14 lines
317 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
var fixedBase = function fixedBase(v, base) {
var str = base.toString();
var index = str.indexOf('.');
if (index === -1) {
return Math.round(v);
}
var length = str.substr(index + 1).length;
if (length > 20) {
length = 20;
}
return parseFloat(v.toFixed(length));
};
module.exports = fixedBase;