-
Notifications
You must be signed in to change notification settings - Fork 3
minEntry
Subhajit Sahu edited this page Dec 8, 2022
·
1 revision
Find smallest entry.
function minEntry(x, fc, fm)
// x: an object
// fc: compare function (a, b)
// fm: map function (v, k, x)
const object = require('extra-object');
var x = {a: 1, b: 2, c: -3, d: -4};
object.minEntry(x);
// → [ 'd', -4 ]
object.minEntry(x, (a, b) => Math.abs(a) - Math.abs(b));
// → [ 'a', 1 ]
object.minEntry(x, null, v => Math.abs(v));
// → [ 'a', 1 ]