(x: any)
| 19 | }); |
| 20 | |
| 21 | const instanceofClass = (x: any) => x instanceof ZodFailure; // 0.64! |
| 22 | const instanceofPromise = (x: any) => x instanceof Promise; // 0.64! |
| 23 | const keyin = (x: any) => typeof x === "object" && x && ZOD_FAILURE in x; |
| 24 | // const typeofObject = (x: any) => typeof x === "object"; |