Skip to content

Instantly share code, notes, and snippets.

@seagoj
Created September 16, 2016 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seagoj/9866f6ca4b9916151ced51233bd4e0ba to your computer and use it in GitHub Desktop.
Save seagoj/9866f6ca4b9916151ced51233bd4e0ba to your computer and use it in GitHub Desktop.
function isEmpty(obj) {
for(var key in obj) {
if(obj.hasOwnProperty(key))
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment