@extra-array/find-all

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

Usage no npm install needed!

<script type="module">
  import extraArrayFindAll from 'https://cdn.skypack.dev/@extra-array/find-all';
</script>

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