Variable: maxByAsync
const
maxByAsync:MinOrMaxByAsync
Defined in: statistics.d.ts:496
Returns an async iterable containing a maximum value of asyncIterable
based
on the fn
AsyncCompare function if asyncIterable
contains at
least one value. Otherwise, returns an empty async iterable.
Example
console.log(
await pipe(
asAsync([`eating`, `sleeping`, `yawning`]),
maxByAsync((a, b) => a.length - b.length),
getAsync,
),
)
//=> sleeping
Since
v0.0.1