ccashfrontend/views/node_modules/validator/es/lib/isBoolean.js
2021-06-18 09:20:09 +10:00

5 lines
No EOL
167 B
JavaScript

import assertString from './util/assertString';
export default function isBoolean(str) {
assertString(str);
return ['true', 'false', '1', '0'].indexOf(str) >= 0;
}