Replies: 1 comment
-
For this use case I recommend using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there away to negate any of the actions? I'm trying to see if an email address doesn't ending @example.com
const EmailSchema = v.pipe( v.string(), v.trim(), v.email(), v.not.endsWith('@example.com') );
Beta Was this translation helpful? Give feedback.
All reactions