fix[plop]: set trim => trim() (#3254)

notEmpty
This commit is contained in:
qige2016 2020-06-15 12:00:17 +08:00 committed by 花裤衩
parent 8c89992c6c
commit 215ff05bd1
1 changed files with 2 additions and 9 deletions

View File

@ -1,9 +1,2 @@
exports.notEmpty = name => {
return v => {
if (!v || v.trim === '') {
return `${name} is required`
} else {
return true
}
}
}
exports.notEmpty = name => v =>
!v || v.trim() === '' ? `${name} is required` : true