Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const isEmpty = value =>
  2. value === undefined ||
  3. value === null ||
  4. (typeof value === "object" && Object.keys(value).length === 0) ||
  5. (typeof value === "string" && value.trim().length === 0)
  6.  
  7. module.exports = isEmpty;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement