find

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
1 KB
Returns the first element of the list which matches the predicate, or `undefined` if no element matches.
1 contributor
Install find as a package?
Copied
npm i @bit/justin-capalbo.ramda.find
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
find (
fn:Function,
list:Array
) : Object

Returns the first element of the list which matches the predicate, or undefined if no element matches.

Dispatches to the find method of the second argument, if present.

Acts as a transducer if a transformer is given in list position.

Example
const xs = [{a: 1}, {a: 2}, {a: 3}];
     R.find(R.propEq('a', 2))(xs); //=> {a: 2}
     R.find(R.propEq('a', 4))(xs); //=> undefined
Arguments
fn: Function

The predicate function used to determine if the element is the desired one.

list: Array

The array to consider.

Returns
Object

The element found, or `undefined`.

Help and resources