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