format
format(callback, [ctx])
作用
参数
示例
const schema = racoon.number();
schema.validate(1.2).format(num => num.toFixed(2)); // pass, 返回 '1.20'最后更新于
format(callback, [ctx])
const schema = racoon.number();
schema.validate(1.2).format(num => num.toFixed(2)); // pass, 返回 '1.20'最后更新于