Variable: toMinBy
const
toMinBy:ToMinOrMaxBy
Defined in: statistics.d.ts:338
Returns an optional reducer that finds the minimum value of the values it
receives based on the fn
Compare function.
Use when composing reducers. Prefer minBy for direct use on iterables.
Example
console.log(
pipe(
[`sloth`, `more sloth`, `sleep`, `some sloth`],
map(string => [string.length, string]),
reduce(toGrouped(toMinBy((s1, s2) => s1.localeCompare(s2)), toMap())),
),
)
//=> Map(2) { 5 => 'sleep', 10 => 'more sloth' }
Since
v2.0.0