Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created January 17, 2022 14:35
Show Gist options
  • Save iskenxan/cc52100844ed4d9fdaf3a6f2f3e2a268 to your computer and use it in GitHub Desktop.
Save iskenxan/cc52100844ed4d9fdaf3a6f2f3e2a268 to your computer and use it in GitHub Desktop.
Typescript schema validation with zod
mySchema.safeParse(""I am a valid password""); // => { success: true; data: "I am a valid password" }
mySchema.safeParse(""); // => { success: false; error: ZodError }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment