Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.
npm install object.pick> Returns a filtered copy of an object with only the specified keys, similar to _.pick from lodash / underscore.
You might also be interested in object.omit.
Install with npm:
``sh`
$ npm install --save object.pick
This is the fastest implementation I tested. Pull requests welcome!
`js
var pick = require('object.pick');
pick({a: 'a', b: 'b'}, 'a')
//=> {a: 'a'}
pick({a: 'a', b: 'b', c: 'c'}, ['a', 'b'])
//=> {a: 'a', b: 'b'}
`
* extend-shallow: Extend an object with the properties of additional objects. node.js/javascript util. | homepage
* get-value: Use property paths (a.b.c) to get a nested value from an object. | a.b.c'a.b.c'" class="text-primary hover:underline" target="_blank" rel="noopener noreferrer">homepage to get a nested value from an object.")
* mixin-deep: Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. | homepage
* set-value: Create nested values and any intermediaries using dot notation () paths. | 'a.b.c'" class="text-primary hover:underline" target="_blank" rel="noopener noreferrer">homepage paths.")
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
_(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)_
To generate the readme and API documentation with verb:
`sh`
$ npm install -g verb verb-generate-readme && verb
Install dev dependencies:
`sh``
$ npm install -d && npm test
Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Copyright © 2016, Jon Schlinkert.
Released under the MIT license.
*
_This file was generated by verb-generate-readme, v0.2.0, on October 27, 2016._