Created
January 25, 2017 12:07
-
-
Save alexaivars/41098e5e4a72c3843723e303e137ac1a 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
| module.exports = (obj, ...keys ) => keys.reduce((result, key) => Object.assign(result, { [key]: obj[key] }), {}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment