我智商爆棚

5 lines
167 B

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