| Current Path : /proc/thread-self/root/var/www/recommendations/www/node_modules/validator/es/lib/ |
| Current File : //proc/thread-self/root/var/www/recommendations/www/node_modules/validator/es/lib/isDivisibleBy.js |
import assertString from './util/assertString';
import toFloat from './toFloat';
export default function isDivisibleBy(str, num) {
assertString(str);
return toFloat(str) % parseInt(num, 10) === 0;
}