validate
validate([value])
Effect
Arguments
Returns
Example
const schema = racoon.number().min(0);
try {
schema.validate(2);
// pass
} catch (error) {
// fail
}Last updated
validate([value])
const schema = racoon.number().min(0);
try {
schema.validate(2);
// pass
} catch (error) {
// fail
}Last updated