Node/middlewares/general/checks.js
Batuhan Coşkun 88839b0f4d Güncelleme
2025-03-20 13:28:23 +03:00

7 lines
173 B
JavaScript

exports.isEmptyForString = function(text){
return !((typeof text === "string") && (
text === undefined ||
text === null ||
text === ""
));
};