Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function isEmpty(value){
  2. return false
  3. // return value === undefined ||
  4. // value === null ||
  5. // (typeof value === "object" && Object.keys(value).length === 0) ||
  6. // (typeof value === "string" && value.trim().length === 0)
  7. }
  8.  
  9. module.exports = isEmpty;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement