summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/isBoolean.js
blob: d50092f24b30683bdc21cd7767d30e70ec3daa4d (plain)
1
2
3
4
5
import assertString from './util/assertString';
export default function isBoolean(str) {
  assertString(str);
  return ['true', 'false', '1', '0'].indexOf(str) >= 0;
}