Skip to content

Instantly share code, notes, and snippets.

@lucalanca
Last active September 22, 2017 13:35
Show Gist options
  • Save lucalanca/5cb5a53345c589c86bf14fa7fa4c360c to your computer and use it in GitHub Desktop.
Save lucalanca/5cb5a53345c589c86bf14fa7fa4c360c to your computer and use it in GitHub Desktop.
removes a key from an object without mutating it
const removeKeyFromObject = (obj, key) => {
const { [key]: _, ...rest } = obj;
return rest;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment