devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
30 lines (26 loc) • 1 kB
JavaScript
/**
* DevExtreme (cjs/common/core/localization/utils.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
exports.toFixed = toFixed;
var _math = require("../../../core/utils/math");
const DECIMAL_BASE = 10;
function roundByAbs(value) {
const valueSign = (0, _math.sign)(value);
return valueSign * Math.round(Math.abs(value))
}
function adjustValue(value, precision) {
const precisionMultiplier = Math.pow(10, precision);
const intermediateValue = (0, _math.multiplyInExponentialForm)(value, precision);
return roundByAbs(intermediateValue) / precisionMultiplier
}
function toFixed(value, precision) {
const valuePrecision = precision || 0;
const adjustedValue = valuePrecision > 0 ? adjustValue(...arguments) : value;
return adjustedValue.toFixed(valuePrecision)
}