- frontend 目录迁移至 backend-adminend(管理后台前端) - 新增 application-shccd159.yml、application-shjjy153.yml - 更新 deploy.conf、DEPLOY.md、application.yml Made-with: Cursor
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
exports.notEmpty = name => {
|
|
return v => {
|
|
if (!v || v.trim === '') {
|
|
return `${name} is required`
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
}
|