diff --git a/src/main.js b/src/main.js index 8801ffa..062ed76 100644 --- a/src/main.js +++ b/src/main.js @@ -26,7 +26,7 @@ export function abs(a) { */ export function max(a, b) { a = BigInt(a); - b = BigInt(b); + b = BigInt(b); return (a >= b) ? a : b; } @@ -40,7 +40,7 @@ export function abs(a) { */ export function min(a, b) { a = BigInt(a); - b = BigInt(b); + b = BigInt(b); return (a >= b) ? b : a; } @@ -857,4 +857,4 @@ if (!process.browser && _useWorkers) { // node.js with support for workers }); }); } -} \ No newline at end of file +}