Returns a filtered copy of an object with only the specified keys, exactly like `pick` from lo-dash / underscore.
$ cnpm install object-pick
Returns a filtered copy of an object with only the specified keys, exactly like
pickfrom 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.
Copyright 2013 - present © cnpmjs.org | Home |