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? 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
in ArraySchema, values.map is called without passing in the options object, thus _opts ends up being the index of the value on the array.
values.map
_opts
Ran into this by trying to run schema.validate([...data], { stripUnknown: true })
schema.validate([...data], { stripUnknown: true })
The text was updated successfully, but these errors were encountered:
oof sneaky. thanks for the heads up, feel like sending a PR?
Sorry, something went wrong.
335eb18
No branches or pull requests
in ArraySchema,
values.map
is called without passing in the options object, thus_opts
ends up being the index of the value on the array.Ran into this by trying to run
schema.validate([...data], { stripUnknown: true })
The text was updated successfully, but these errors were encountered: