How does Yup’s casting system work?
26 October 2023 (Updated 26 October 2023)
Yup’s Schema.cast()
method lets you attempt to coerce an input to match a specific schema. For example, you might use the number()
type to coerce a value like "5"
to 5
.
Failed casts usually return null
, but can also return values like NaN
or unexpected strings.
If you know that your input is already parsed, you can use { strict: true }
to skip the casting:
Tagged:
Yup
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment