JSPM

  • Created
  • Published
  • Downloads 620
  • Score
    100M100P100Q100946F
  • License MIT

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

Package Exports

  • array-filter-x

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (array-filter-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Travis status Dependency status devDependency status npm version

array-filter-x

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

Version: 2.1.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

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

var filter = require('array-filter-x');

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

var filtered = filter([12, 5, 8, 130, 44], isBigEnough);
// filtered is [12, 130, 44]