custom
custom(callback, [ctx])
作用
参数
示例
const schema = racoon.string().custom((val) => {
if (val.length % 2 === 0) {
return true;
}
throw new Error('被检测字符串长度不为偶数');
});
schema.validate('12'); // pass
schema.validate('123'); // fail最后更新于