Skip to content

Instantly share code, notes, and snippets.

@vjk2005
Last active January 6, 2018 02:36
Show Gist options
  • Save vjk2005/b49159a09781509b7192b183f0c8bd71 to your computer and use it in GitHub Desktop.
Save vjk2005/b49159a09781509b7192b183f0c8bd71 to your computer and use it in GitHub Desktop.
Empty check for strings, arrays, objects or anything else.
const isEmpty = (obj = {}) => Object.keys(obj).length === 0
// via: https://twitter.com/peterpme/status/949352875687202816?ref_src=twcamp%5Eshare%7Ctwsrc%5Em5%7Ctwgr%5Eemail%7Ctwcon%5E7046%7Ctwterm%5E1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment