Finds smallest value.
This is part of package extra-array.
This is browserified, minified version of @extra-array/min.
It is exported as global variable array_min.
CDN: unpkg, jsDelivr.
array.min(x, [fc], [fm]);
// x: an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
// → [index, value]
const array = require("extra-array");
var x = [1, 2, -3, -4];
array.min(x);
// [ 3, -4 ]
array.min(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 0, 1 ]
array.min(x, null, v => Math.abs(v));
// [ 0, 1 ]