Gazebo_simulation-Frontend/node_modules/es-abstract/helpers/mod.js
2020-12-21 10:29:31 -05: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);
};