UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

30 lines (26 loc) 984 B
/** * DevExtreme (cjs/localization/utils.js) * Version: 23.2.6 * Build date: Wed May 01 2024 * * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; 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) }