Files

10 lines
162 B
JavaScript
Raw Permalink Normal View History

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