File "mod.js"
Full Path: C:/wamp64/www/INTERPRETE2/backend/node_modules/ms/mod.js
File size: 218 bytes
MIME-type: text/plain
Charset: utf-8
'use strict';
var $floor = require('./floor');
/** @type {import('./mod')} */
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return $floor(remain >= 0 ? remain : remain + modulo);
};