Created
June 25, 2019 08:29
-
-
Save Lodo4ka/c2b6ac1c43f0e1ca15f44db93d0119fa to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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