1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 03:04:59 +08:00

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

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