forgeplus-react/node_modules/@antv/util/lib/math/mod.js

5 lines
82 B
JavaScript

var mod = function mod(n, m) {
return (n % m + m) % m;
};
module.exports = mod;