summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/isDivisibleBy.js
blob: f71d5f4e2454335152e5338d46e253f63399af87 (plain)
1
2
3
4
5
6
import assertString from './util/assertString';
import toFloat from './toFloat';
export default function isDivisibleBy(str, num) {
  assertString(str);
  return toFloat(str) % parseInt(num, 10) === 0;
}