11-main/plop-templates/utils.js

10 lines
154 B
JavaScript
Raw Normal View History

2022-10-26 16:06:12 +08:00
exports.notEmpty = name => {
return v => {
if (!v || v.trim === '') {
return `${name} is required`
} else {
return true
}
}
}