custom
custom(callback, [ctx])
Effect
Arguments
Example
const schema = racoon.string().custom((val) => {
if (val === false) {
return true;
}
throw new Error('The detected value must be false');
});
schema.validate(false); // pass
schema.validate(true); // failLast updated