UNPKG

react-zod-form

Version:

Simple form validation and values transformation.

7 lines (6 loc) 214 B
/** * - Converts `0 | 1` to `false | true`. * - Converts `"0" | "1"` to `false | true`. * - Converts `"false" | "true"` to `false | true`. */ export declare function toBoolean(value: string | number): boolean;