Variable: maxWithAsync
const
maxWithAsync:MinOrMaxWithAsync
Defined in: statistics.d.ts:883
Returns an async iterable containing a maximum value of asyncIterable
by
comparing the numerical values of each value, as defined by fn
, if
asyncIterable
contains at least one value. Otherwise, returns an empty
async iterable.
Example
console.log(
await pipe(
asAsync([`eating`, `sleeping`, `yawning`]),
maxWithAsync(value => value.length),
getAsync,
),
)
//=> sleeping
Since
v0.0.1