Urara-Blog/node_modules/.pnpm-store/v3/files/94/e1951c13cc50a38543b339bbfb7689450bcb29d5326cfc514f5ee79f5aeb8b73e2e1f176ec78563a721c5a09125b4f40dc61c2b0746cf45f1ae1a4e13b3641
2022-08-14 01:14:53 +08:00

6 lines
184 B
Text

'use strict';
module.exports = function bigIntMod(BigIntRemainder, bigint, modulo) {
var remain = BigIntRemainder(bigint, modulo);
return remain >= 0 ? remain : remain + modulo;
};