A tiny, faster alternative to native
Array.prototype.filter
@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!
$ npm install --save @arr/filter
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']
Type: Array
The array to iterate upon.
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.
MIT © Luke Edwards