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
A possible scenario is to validate data coming from the list of checkboxes:
{"flag1": true, "flag2": false, "flag3": true}
into a smallest possible set:
{"flag1": true, "flag3": true}
The syntax might look like simply like clean.set() where all schema parameters will be passed directly to clean.boolean().
clean.set()
clean.boolean()
The text was updated successfully, but these errors were encountered:
or, it could be clean.booleanSet
clean.booleanSet
Sorry, something went wrong.
No branches or pull requests
A possible scenario is to validate data coming from the list of checkboxes:
into a smallest possible set:
The syntax might look like simply like
clean.set()
where all schema parameters will be passed directly toclean.boolean()
.The text was updated successfully, but these errors were encountered: