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 comparison with simpl-schema there is this block:
The pick and omit methods accept a comma seperated list of values to pick or omit, but not an array. E.g.
pick
omit
// Simple-Schema schema.pick(['field','field2']); // Faster-Schema schema.pick(['field','field2']);
Which should show some difference, but both APIs look same. In main documentaiton, the API looks like this:
const nameSchema = schema.pick('firstName', 'lastName', 'address.*');
So I guess the comparison documentation should be fixed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In comparison with simpl-schema there is this block:
Schema extacting
The
pick
andomit
methods accept a comma seperated list of values to pick or omit, but not an array.E.g.
Which should show some difference, but both APIs look same. In main documentaiton, the API looks like this:
So I guess the comparison documentation should be fixed
The text was updated successfully, but these errors were encountered: