mod.js 82 B

12345
  1. var mod = function mod(n, m) {
  2. return (n % m + m) % m;
  3. };
  4. module.exports = mod;