3.1.2 • Published 6 years ago
array-every-x v3.1.2
array-every-x
Tests that all elements in the array pass the provided function.
module.exports ⇒ boolean ⏏
This method tests whether all elements in the array pass the test implemented by the provided function.
Kind: Exported member
Returns: boolean - true if the callback function returns a truthy value for
every 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 every from 'array-every-x';
function isBigEnough(element, index, array) {
return element >= 10;
}
console.log(every([12, 5, 8, 130, 44], isBigEnough)); // false
console.log(every([12, 54, 18, 130, 44], isBigEnough)); // true3.1.2
6 years ago
3.1.1
6 years ago
3.1.0
6 years ago
3.0.21
7 years ago
3.0.20
7 years ago
3.0.19
7 years ago
3.0.18
7 years ago
3.0.17
7 years ago
3.0.16
7 years ago
3.0.15
7 years ago
3.0.14
7 years ago
3.0.13
7 years ago
3.0.12
7 years ago
3.0.11
7 years ago
3.0.10
7 years ago
3.0.9
7 years ago
3.0.8
7 years ago
3.0.7
7 years ago
3.0.6
7 years ago
3.0.5
7 years ago
3.0.4
7 years ago
3.0.3
7 years ago
3.0.2
7 years ago
3.0.1
7 years ago
3.0.0
7 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.2.0
8 years ago
1.1.0
8 years ago
1.0.2
8 years ago
1.0.1
8 years ago
1.0.0
8 years ago