Skip to content

Instantly share code, notes, and snippets.

@cannalee90
Created April 15, 2018 01:13
Show Gist options
  • Select an option

  • Save cannalee90/d12fbe69c2c3e7255ff4f164b7a0efed to your computer and use it in GitHub Desktop.

Select an option

Save cannalee90/d12fbe69c2c3e7255ff4f164b7a0efed to your computer and use it in GitHub Desktop.
export const isEmptyObj = (obj) => {
if (!Object.getOwnPropertyNames(obj).length) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment