Created
January 6, 2015 04:51
-
-
Save leaysgur/e8aa0dbb3e85ee9eb44c to your computer and use it in GitHub Desktop.
isEmptyObject
This file contains 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
function isEmptyObject(obj) { | |
var p; | |
for (p in obj) { | |
return false; | |
} | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment