Last active
January 6, 2018 02:36
-
-
Save vjk2005/b49159a09781509b7192b183f0c8bd71 to your computer and use it in GitHub Desktop.
Empty check for strings, arrays, objects or anything else.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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