astro-ghostcms/.pnpm-store/v3/files/82/96826a19816b9b9084dd9c3890f...

9 lines
179 B
Plaintext

'use strict';
var $floor = Math.floor;
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return $floor(remain >= 0 ? remain : remain + modulo);
};