Skip to content

Instantly share code, notes, and snippets.

@valeriocs
Created December 3, 2018 18:17
Show Gist options
  • Save valeriocs/b33961e4e795d630f24acd4f826dc6d6 to your computer and use it in GitHub Desktop.
Save valeriocs/b33961e4e795d630f24acd4f826dc6d6 to your computer and use it in GitHub Desktop.
Easy to remove emptys from object
removeEmpty(object) {
const obj = {};
// eslint-disable-next-line no-restricted-syntax
for (const key in object) {
if (
object[key] !== null &&
object[key] !== false &&
object[key] !== undefined
) {
obj[key] = object[key];
}
}
return obj;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment