Ralkey

Results 11 issues of Ralkey

Zod version: 3.23.8 When writing the following Zod schema: ```typescript z.string() .refine((val) => val === "John", { message: "String must be equal to 'John'", }) .min(1) ``` I expected this...