Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
7 lines
184 B
7 lines
184 B
2 years ago
|
'use strict';
|
||
|
|
||
|
module.exports = function bigIntMod(BigIntRemainder, bigint, modulo) {
|
||
|
var remain = BigIntRemainder(bigint, modulo);
|
||
|
return remain >= 0 ? remain : remain + modulo;
|
||
|
};
|