dl_mer_plat_admin/plop-templates/utils.js
2025-03-04 16:01:59 +08:00

10 lines
162 B
JavaScript

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