pick-all

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
3
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
832 B
Similar to `pick` except that this one includes a `key: undefined` pair for properties that don't exist.
1 contributor
Install pick-all as a package?
Copied
npm i @bit/justin-capalbo.ramda.pick-all
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
pickAll (
names:Array,
obj:Object
) : Object

Similar to pick except that this one includes a key: undefined pair for properties that don’t exist.

Example
R.pickAll(['a', 'd'], {a: 1, b: 2, c: 3, d: 4}); //=> {a: 1, d: 4}
     R.pickAll(['a', 'e', 'f'], {a: 1, b: 2, c: 3, d: 4}); //=> {a: 1, e: undefined, f: undefined}
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