You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
182 B
5 lines
182 B
// 为了解决 js 运算的精度问题
|
|
export function prettyNumber(n) {
|
|
return Math.abs(n) < 1e-14 ? n : parseFloat(n.toFixed(14));
|
|
}
|
|
//# sourceMappingURL=pretty-number.js.map
|