????

Your IP : 18.218.169.79


Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/es-abstract/helpers/
Upload File :
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/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);
};