Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@extra-array/find-all

nodef346MIT2.10.19TypeScript support: included

Finds all values passing a test.

extra, array, find, all, findAll

readme

Finds all values passing a test. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:

Alternatives: find, findRight, findAll.
Similar: search, scan, find.

This is part of package extra-array.


array.findAll(x, ft);
// x:  an array
// ft: test function (v, i, x)
const array = require("extra-array");

var x = [1, 2, 3, 4, 5];
array.findAll(x, v => v % 2 === 1);
// [ 1, 3, 5 ]

array.findAll(x, v => v % 2 === 0);
// [ 2, 4 ]


References