You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm evaluating this package for replacing Joi validations that we have.
The main thing I like in this package is that I don't need to declare the object type and schema separately (using t.InferType).
One thing that I'm missing is the ability to to ignore extraneous properties from the returned value of t.as(). So if I get invalid properties, there will be no error, and the object returned from t.as() will not include these properties
The text was updated successfully, but these errors were encountered:
Hi,
I'm evaluating this package for replacing Joi validations that we have.
The main thing I like in this package is that I don't need to declare the object type and schema separately (using
t.InferType
).One thing that I'm missing is the ability to to ignore extraneous properties from the returned value of
t.as()
. So if I get invalid properties, there will be no error, and the object returned fromt.as()
will not include these propertiesThe text was updated successfully, but these errors were encountered: