| 23 | const keyin = (x: any) => typeof x === "object" && x && ZOD_FAILURE in x; |
| 24 | // const typeofObject = (x: any) => typeof x === "object"; |
| 25 | const typeofThenCheckSymbol = (x: any) => typeof x === "object" && x?.[ZOD_FAILURE]; // 1.69 |
| 26 | const typeofThenCheckTag = (x: any) => typeof x === "object" && x?.tag === ZOD_FAILURE; // 1.69 |
| 27 | const instanceofObjectThenCheckSymbol = (x: any) => x instanceof Object && x[ZOD_FAILURE]; // 1.69 |
| 28 | const instanceofObjectThenCheckTag = (x: any) => x instanceof Object && x.tag === ZOD_FAILURE; // 1.69 |