Skip to content

Instantly share code, notes, and snippets.

@Avaray
Last active May 11, 2018 00:18
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 Avaray/a33ad96c5a39f007feff282527534438 to your computer and use it in GitHub Desktop.
Save Avaray/a33ad96c5a39f007feff282527534438 to your computer and use it in GitHub Desktop.
[JS] Delete empty Keys from Object
function clean(o) {
Object.keys(o).forEach(k => (!o[k] && o[k] !== undefined) && delete o[k]);
return o;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment