any

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
1 KB
Returns `true` if at least one of the elements of the list match the predicate, `false` otherwise.
1 contributor
Install any as a package?
Copied
npm i @bit/justin-capalbo.ramda.any
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
any (
fn:Function,
list:Array
) : Boolean

Returns true if at least one of the elements of the list match the predicate, false otherwise.

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

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

Example
const lessThan0 = R.flip(R.lt)(0);
     const lessThan2 = R.flip(R.lt)(2);
     R.any(lessThan0)([1, 2]); //=> false
     R.any(lessThan2)([1, 2]); //=> true
Arguments
fn: Function

The predicate function.

list: Array

The array to consider.

Returns
Boolean

`true` if the predicate is satisfied by at least one element, `false` otherwise.

Help and resources