智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/29/293cb3c764a2b9ae26ceb0aa531...

24 lines
528 B

const { exit } = require('./exit')
// proxy to joi for option validation
exports.createSchema = fn => fn(require('@hapi/joi'))
exports.validate = (obj, schema, cb) => {
require('@hapi/joi').validate(obj, schema, {}, err => {
if (err) {
cb(err.message)
if (process.env.VUE_CLI_TEST) {
throw err
} else {
exit(1)
}
}
})
}
exports.validateSync = (obj, schema) => {
const result = require('@hapi/joi').validate(obj, schema)
if (result.error) {
throw result.error
}
}