UNPKG

@extra-array/min-index

Version:

Finds index of smallest value.

9 lines (5 loc) 183 B
const array = require('extra-array'); var x = [1, 2, -3, -4]; array.minIndex(x); array.minIndex(x, (a, b) => Math.abs(a) - Math.abs(b)); array.minIndex(x, null, v => Math.abs(v));