frontend/.pnpm-store/v3/files/3b/60ebf379c82b0b92d7044a894d02135062e93e90e3f5c561e98f432c85128c93965488a698e47e5f3e90d5139742baf30b57679d6b094680ea06ccb76a5476

10 lines
249 B
Plaintext

import assertString from './util/assertString';
export default function toBoolean(str, strict) {
assertString(str);
if (strict) {
return str === '1' || /^true$/i.test(str);
}
return str !== '0' && !/^false$/i.test(str) && str !== '';
}