from-pairs

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
720 B
Creates a new object from a list key-value pairs.
1 contributor
Install from-pairs as a package?
Copied
npm i @bit/justin-capalbo.ramda.from-pairs
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
fromPairs (
pairs:Array
) : Object

Creates a new object from a list key-value pairs. If a key appears in multiple pairs, the rightmost pair is included in the object.

Example
R.fromPairs([['a', 1], ['b', 2], ['c', 3]]); //=> {a: 1, b: 2, c: 3}
Argument
pairs: Array

An array of two-element arrays that will be the keys and values of the output object.

Returns
Object

The object made by pairing up `keys` and `values`.

Help and resources