3.1.2 • Published 6 years ago
array-some-x v3.1.2
array-some-x
Tests whether some element passes the provided function.
module.exports
⇒ boolean ⏏
This method tests whether some element in the array passes the test implemented by the provided function.
Kind: Exported member
Returns: boolean - true
if the callback function returns a truthy value for
any array element; otherwise, false
.
Throws:
- TypeError If array is null or undefined.
- TypeError If callBack is not a function.
Param | Type | Description |
---|---|---|
array | array | The array to iterate over. |
callBack | function | Function to test for each element. |
thisArg | * | Value to use as this when executing callback. |
Example
import some from 'array-some-x';
function isBiggerThan10(element, index, array) {
return element > 10;
}
console.log(some([2, 5, 8, 1, 4], isBiggerThan10)); // false
console.log(some([12, 5, 8, 1, 4], isBiggerThan10)); // true
3.1.2
6 years ago
3.1.1
6 years ago
3.1.0
6 years ago
3.0.14
6 years ago
3.0.13
6 years ago
3.0.12
6 years ago
3.0.11
6 years ago
3.0.10
6 years ago
3.0.9
6 years ago
3.0.8
6 years ago
3.0.7
6 years ago
3.0.6
6 years ago
3.0.5
6 years ago
3.0.4
6 years ago
3.0.3
6 years ago
3.0.2
6 years ago
3.0.1
6 years ago
3.0.0
6 years ago
2.5.0
7 years ago
2.4.0
8 years ago
2.3.0
8 years ago
2.2.0
8 years ago
2.1.0
8 years ago
2.0.0
8 years ago
1.3.0
8 years ago
1.1.0
8 years ago
1.0.3
8 years ago
1.0.2
8 years ago
1.0.1
8 years ago
1.0.0
8 years ago