@arr/filter
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

@arr/filter

A tiny, faster alternative to native Array.prototype.filter

⚠️ Unlike native, @arr/filter does not support the optional thisArg parameter!

If you are okay with mutating the original, check out @arr/filter.mutate for an extremely fast filter alternative!

Install

$ npm install --save @arr/filter

Usage

import filter from '@arr/filter';

const words = ['foo', 'bar', 'baz', 'foobar', 'hello', 'world'];

filter(words, str => str.length > 3);
//=> ['foobar', 'hello', 'world']

console.log(words);
//=> ['foo', 'bar', 'baz', 'foobar', 'hello', 'world']

API

filter(arr, callback)

arr

Type: Array
The array to iterate upon.

callback(value[, index, array])

Type: Function
Function to test for each element, taking three arguments:

  • value (required) -- The current element being processed in the array.
  • index (optional) -- The index of the current element being processed in the array.
  • array (optional) -- The array filter was called upon.

License

MIT © Luke Edwards

Package Sidebar

Install

npm i @arr/filter

Weekly Downloads

1,395

Version

1.0.2

License

MIT

Unpacked Size

2.3 kB

Total Files

5

Last publish

Collaborators

  • lukeed