/home/bdqbpbxa/demo-subdomains/ping-proxies.goodface.com.ua/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);
};