@extra-iterable/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 extraIterableFindAllMin from 'https://cdn.skypack.dev/@extra-iterable/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-iterable.

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


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

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

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


References