-
Notifications
You must be signed in to change notification settings - Fork 3
min
Subhajit Sahu edited this page Dec 8, 2022
·
12 revisions
Find smallest value.
function min(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.min(x);
// → -4
object.min(x, (a, b) => Math.abs(a) - Math.abs(b));
// → 1
object.min(x, null, v => Math.abs(v));
// → 1