@extra-array/find-all.min

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 extraArrayFindAllMin from 'https://cdn.skypack.dev/@extra-array/find-all.min';
</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.

This is browserified, minified version of @extra-array/find-all.
It is exported as global variable array_findAll.
CDN: unpkg, jsDelivr.


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