Skip to content

Instantly share code, notes, and snippets.

@leaysgur
Created January 6, 2015 04:51
Show Gist options
  • Save leaysgur/e8aa0dbb3e85ee9eb44c to your computer and use it in GitHub Desktop.
Save leaysgur/e8aa0dbb3e85ee9eb44c to your computer and use it in GitHub Desktop.
isEmptyObject
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