/var/www/greso.tech/server/nsm/node_modules/validator/es/lib
Edit: /var/www/greso.tech/server/nsm/node_modules/validator/es/lib/isDivisibleBy.js (202B)
import assertString from './util/assertString';
import toFloat from './toFloat';
export default function isDivisibleBy(str, num) {
assertString(str);
return toFloat(str) % parseInt(num, 10) === 0;
}