Last active
September 22, 2017 13:35
-
-
Save lucalanca/5cb5a53345c589c86bf14fa7fa4c360c to your computer and use it in GitHub Desktop.
removes a key from an object without mutating it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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