Opal-Estate-Pro/node_modules/es-abstract/helpers/mod.js

7 lines
157 B
JavaScript
Raw Normal View History

2019-09-13 06:27:52 +02:00
'use strict';
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return Math.floor(remain >= 0 ? remain : remain + modulo);
};