Variable: minBy
const
minBy:MinOrMaxBy
Defined in: statistics.d.ts:360
Returns an iterable containing a minimum value of iterable
based on the
fn
Compare function if iterable
contains at least one value.
Otherwise, returns an empty iterable.
Example
console.log(
pipe(
[`eating`, `sleeping`, `yawning`],
minBy((a, b) => a.length - b.length),
get,
),
)
//=> eating
Since
v0.0.1