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