Lobashov_Ivan_PIBD-21_IP/Lab2/node_modules/es-abstract/helpers/mod.js

9 lines
179 B
JavaScript
Raw Normal View History

2024-01-10 22:39:31 +04:00
'use strict';
var $floor = Math.floor;
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return $floor(remain >= 0 ? remain : remain + modulo);
};