11 lines
165 B

const isEmpty = (obj) => {
if (obj == undefined || obj == null || obj === "" || obj === "null") {
return true;
} else {
return false;
}
}
export {
isEmpty
}