We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In an ideal world, there would be a way to have an option that quietly discards array members that do not match the schema.
const results = z.gracefulArray( z.object({ name: z.literal('foo') }) ).parse([ { name: 'foo' }, { name: 'bar', } ]); console.log(results); [ { name: 'foo' }, ]
so it would work almost like a filter
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In an ideal world, there would be a way to have an option that quietly discards array members that do not match the schema.
so it would work almost like a filter
The text was updated successfully, but these errors were encountered: