8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
|
module.exports = function (value = {}, schema = {}) {
|
||
|
const validateRes = this.validator.validate(value, schema)
|
||
|
if (validateRes) {
|
||
|
delete validateRes.schemaKey
|
||
|
throw validateRes
|
||
|
}
|
||
|
}
|