Files
Domen Kožar 08403cd828 v5
2019-11-13 17:14:48 +01:00

7 lines
157 B
JavaScript

'use strict';
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return Math.floor(remain >= 0 ? remain : remain + modulo);
};