array-filter-x

v3.1.2
Creates an array with all elements that pass the test by the provided function.
Array filter module javascript nodejs browser

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

array-filter-x

Creates an array with all elements that pass the test by the provided function.

module.exportsarray

This method creates a new array with all elements that pass the test implemented by the provided function.

Kind: Exported member
Returns: array - A new array with the elements that pass the test.
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 is a predicate, to test each element.
[thisArg] * Value to use as this when executing callback.

Example

import filter from 'array-filter-x';

function isBigEnough(value) {
  return value >= 10;
}

console.log(filter([12, 5, 8, 130, 44], isBigEnough)); // filtered is [12, 130, 44]
npm i array-filter-x

Metadata

  • MIT
  • >=8.11.4
  • Graham Fairweather
  • released 8/28/2019

Downloads

Maintainers