astro-ghostcms/.pnpm-store/v3/files/94/e1951c13cc50a38543b339bbfb7...

7 lines
184 B
Plaintext

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