11-main/plop-templates/utils.js
2022-10-26 16:06:12 +08:00

10 lines
154 B
JavaScript

exports.notEmpty = name => {
return v => {
if (!v || v.trim === '') {
return `${name} is required`
} else {
return true
}
}
}