%PDF- %PDF-
Direktori : /var/www/html/node_modules/es-abstract/helpers/ |
Current File : /var/www/html/node_modules/es-abstract/helpers/mod.js |
'use strict'; var $floor = Math.floor; module.exports = function mod(number, modulo) { var remain = number % modulo; return $floor(remain >= 0 ? remain : remain + modulo); };