am-burban
Results
2
comments of
am-burban
You could just add a little helper function: ```ts export const isValid = ( schema: z.ZodType, data: unknown ): data is Output => schema.safeParse(data).success; ``` This allows you to use...
Hey, I'm wondering what the intention of this change is. If I need to pass in an instance of `FormData` as the request body, why do I need the formatter...