@extra-iterable/min.min

Finds smallest entry. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:

Usage no npm install needed!

<script type="module">
  import extraIterableMinMin from 'https://cdn.skypack.dev/@extra-iterable/min.min';
</script>

README

Finds smallest entry. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:

Similar: min, max, range.

This is part of package extra-iterable.

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


iterable.min(x, [fc], [fm]);
// x:  an iterable
// fc: compare function (a, b)
// fm: map function (v, i, x)
// → [index, value]
const iterable = require("extra-iterable");

var x = [1, 2, -3, -4];
iterable.min(x);
// [ 3, -4 ]

iterable.min(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 0, 1 ]

iterable.min(x, null, v => Math.abs(v));
// [ 0, 1 ]


References