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.
|
|
// 为了解决 js 运算的精度问题
|
|
|
export function prettyNumber(n: number) {
|
|
|
return Math.abs(n) < 1e-14 ? n : parseFloat(n.toFixed(14));
|
|
|
}
|
|
|
|