fomat issues
This commit is contained in:
parent
e36650460e
commit
af1592bc7e
|
@ -26,7 +26,7 @@ export function abs(a) {
|
||||||
*/
|
*/
|
||||||
export function max(a, b) {
|
export function max(a, b) {
|
||||||
a = BigInt(a);
|
a = BigInt(a);
|
||||||
b = BigInt(b);
|
b = BigInt(b);
|
||||||
return (a >= b) ? a : b;
|
return (a >= b) ? a : b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ export function abs(a) {
|
||||||
*/
|
*/
|
||||||
export function min(a, b) {
|
export function min(a, b) {
|
||||||
a = BigInt(a);
|
a = BigInt(a);
|
||||||
b = BigInt(b);
|
b = BigInt(b);
|
||||||
return (a >= b) ? b : a;
|
return (a >= b) ? b : a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -857,4 +857,4 @@ if (!process.browser && _useWorkers) { // node.js with support for workers
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue