array-some-x

3.1.2 • Public • Published

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

array-some-x

Tests whether some element passes the provided function.

module.exportsboolean

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

Dependencies (8)

Dev Dependencies (56)

Package Sidebar

Install

npm i array-some-x

Weekly Downloads

181

Version

3.1.2

License

MIT

Unpacked Size

298 kB

Total Files

11

Last publish

Collaborators

  • xotic750