Files
julia-buildpkg/node_modules/es-abstract/helpers/mod.js
David Anthoff c0c6ce37ca Add node deps
2019-09-14 21:05:22 -07: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);
};