Initial Save
This commit is contained in:
6
node_modules/es-abstract/helpers/modBigInt.js
generated
vendored
Normal file
6
node_modules/es-abstract/helpers/modBigInt.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function bigIntMod(BigIntRemainder, bigint, modulo) {
|
||||
var remain = BigIntRemainder(bigint, modulo);
|
||||
return remain >= 0 ? remain : remain + modulo;
|
||||
};
|
||||
Reference in New Issue
Block a user