custom
custom(callback, [ctx])
Effect
Arguments
Example
const schema = racoon.number().custom((val) => {
if (val % 2 === 0) {
return true;
}
throw new Error('The detected number should be even');
});
schema.validate(2); // pass
schema.validate(1); // failLast updated