| 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 |
| 29 | const falsyThenCheckTag = (x: any) => x && x.tag === ZOD_FAILURE; // 1.59 |
| 30 | const falsyThenCheckSymbol = (x: any) => x?.[ZOD_FAILURE]; // 1.74 |
| 31 | const nullChainCheckSymbol = (x: any) => x?.[ZOD_FAILURE]; // 1.74 |