Created
February 3, 2017 14:14
-
-
Save djsmith42/7e4a026e641a3544e9887e67c3a60c84 to your computer and use it in GitHub Desktop.
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 obj = {foo: 1, bar: 2, biz: 3, baz: 4} | |
const x = subset(obj, ['foo', 'baz']) | |
// x == {foo: 1, baz: 4} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment