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

5 lines
82 B
JavaScript
Raw Normal View History

2023-07-29 21:19:10 +08:00
var mod = function mod(n, m) {
return (n % m + m) % m;
};
module.exports = mod;