https://github.com/xotic750/array-some-x
Tests whether some element passes the provided function.
https://github.com/xotic750/array-some-x
array browser javascript nodejs some
Last synced: about 1 year ago
JSON representation
Tests whether some element passes the provided function.
- Host: GitHub
- URL: https://github.com/xotic750/array-some-x
- Owner: Xotic750
- License: mit
- Created: 2017-08-08T21:00:31.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:34:50.000Z (over 3 years ago)
- Last Synced: 2025-04-30T20:07:47.653Z (about 1 year ago)
- Topics: array, browser, javascript, nodejs, some
- Language: JavaScript
- Size: 2.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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**
```js
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
```