hexo/node_modules/es-abstract/helpers/mod.js

9 lines
179 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'use strict';
var $floor = Math.floor;
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return $floor(remain >= 0 ? remain : remain + modulo);
};