object-pick
Advanced tools
Weekly downloads
Readme
Returns a filtered copy of an object with only the specified keys, exactly like
pick
from lo-dash / underscore.
npm i object-pick --save-dev
This is the fastest implementation I tested. Pull requests welcome!
npm test
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'}
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on October 05, 2014.
FAQs
Returns a filtered copy of an object with only the specified keys, exactly like `pick` from lo-dash / underscore.
The npm package object-pick receives a total of 841 weekly downloads. As such, object-pick popularity was classified as not popular.
We found that object-pick demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.