From af1592bc7e3159c6a2060bcf355d2b76069d52af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Hern=C3=A1ndez=20Serrano?= Date: Sat, 20 Jul 2019 10:12:58 +0200 Subject: [PATCH] fomat issues --- src/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +}