Skip to content

Instantly share code, notes, and snippets.

@Lodo4ka
Created June 25, 2019 08:29
Show Gist options
  • Select an option

  • Save Lodo4ka/c2b6ac1c43f0e1ca15f44db93d0119fa to your computer and use it in GitHub Desktop.

Select an option

Save Lodo4ka/c2b6ac1c43f0e1ca15f44db93d0119fa to your computer and use it in GitHub Desktop.
const removeProperties = (object, ...keys) =>
Object.entries(object).reduce(
(prev, [key, value]) => ({
...prev,
...(!keys.includes(key) && { [key]: value }),
}),
{}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment