@thewtex/vtk.js-esm
Version:
Visualization Toolkit for the Web
14 lines (11 loc) • 511 B
JavaScript
import { f as formatDecimalParts } from './formatDecimal.js';
function formatRounded(x, p) {
var d = formatDecimalParts(x, p);
if (!d) return x + "";
var coefficient = d[0],
exponent = d[1];
return exponent < 0 ? "0." + new Array(-exponent).join("0") + coefficient
: coefficient.length > exponent + 1 ? coefficient.slice(0, exponent + 1) + "." + coefficient.slice(exponent + 1)
: coefficient + new Array(exponent - coefficient.length + 2).join("0");
}
export { formatRounded as f };