pick

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
832 B
Returns a partial copy of an object containing only the keys specified.
1 contributor
Install pick as a package?
Copied
npm i @bit/justin-capalbo.ramda.pick
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
pick (
names:Array,
obj:Object
) : Object

Returns a partial copy of an object containing only the keys specified. If the key does not exist, the property is ignored.

Example
R.pick(['a', 'd'], {a: 1, b: 2, c: 3, d: 4}); //=> {a: 1, d: 4}
     R.pick(['a', 'e', 'f'], {a: 1, b: 2, c: 3, d: 4}); //=> {a: 1}
Arguments
names: Array

an array of String property names to copy onto a new object

obj: Object

The object to copy from

Returns
Object

A new object with only properties from `names` on it.

Help and resources