typia
Version:
Superfast runtime validators with only one line
6 lines (5 loc) • 344 B
JavaScript
//#region src/internal/_httpQueryReadBoolean.ts
const _httpQueryReadBoolean = (str) => str === null ? void 0 : str === "null" ? null : str.length === 0 ? true : str === "true" || str === "1" ? true : str === "false" || str === "0" ? false : str;
//#endregion
export { _httpQueryReadBoolean };
//# sourceMappingURL=_httpQueryReadBoolean.mjs.map