Skip to content

Instantly share code, notes, and snippets.

@ilyas-shah
Created November 7, 2017 12:00
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 ilyas-shah/8693d63cfe144b92664d21badd4de9fb to your computer and use it in GitHub Desktop.
Save ilyas-shah/8693d63cfe144b92664d21badd4de9fb to your computer and use it in GitHub Desktop.
function to check for empty objects.
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