-
Notifications
You must be signed in to change notification settings - Fork 939
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow empty string but fail on undefined #136
Comments
Don't want to create another issue so here's another example: const yup = require("yup")
// want to accept any number or null, nothing else
const schema = yup.number().required().nullable(true);
console.log(await schema.isValid(1)); // true
console.log(await schema.isValid(23)); // true
console.log(await schema.isValid(null)); // false <--
console.log(await schema.isValid(undefined)); // false |
So
|
Thank you @jquense. This solution fixes the case from my additional comment. What about the |
should work in that case as well. if you are only interesting in |
Thank you, it indeed solves my issue. However, are these sentences from the README valid?
In this case,
In this case, |
yeah they seem outdated, care to PR removing them? |
Alright, see PR #137 |
I don't see how to do the old
case anymore. Do I have to now provide a custom yup method? I made a SO question asking for help https://stackoverflow.com/questions/63943689/how-to-get-yup-string-to-require-string-of-any-length-including-0 Thanks! |
In deed, |
According to README, it should be possible to require empty string:
However, this does not seem to work:
Same with
yup.array().required().min(0)
won't allow[]
.Am I missing something?
The text was updated successfully, but these errors were encountered: