fomat issues

This commit is contained in:
Juan Hernández Serrano 2019-07-20 10:12:58 +02:00 committed by GitHub
parent e36650460e
commit af1592bc7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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
});
});
}
}
}