enum
enum(...values)
Effect
Restrict the detected number to be one of values
.
Arguments
...values
(Array<number>) - The valid values that allow the detected value to be.
Example
const schema = racoon.number().enum(1, 3, 5);
schema.validate(1); // pass
schema.validate(3); // pass
schema.validate(5); // pass
schema.validate(2); // fail
Last updated
Was this helpful?