JSPM

@extra-array/range.min

2.8.64
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q82346F
  • License MIT

Finds smallest and largest values.

Package Exports

  • @extra-array/range.min

Readme

Finds smallest and largest values. 🏃 📼 📦 🌔 📒

Similar: min, max, range.
This is part of package extra-array.

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

array.range(x, [fc], [fm]);
// x:  an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
// --> [min, max]
const array = require('extra-array');

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

array.range(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 1, -4 ]

array.range(x, null, v => Math.abs(v));
// [ 1, -4 ]

references