Skip to main content

Function: minByAsync()

Returns an async iterable containing a minimum 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`]),
minByAsync((a, b) => a.length - b.length),
getAsync,
),
)
//=> eating

minByAsync(fn, asyncIterable)

minByAsync<Value>(fn, asyncIterable): AsyncIterable<Value, any, any>

Returns an async iterable containing a minimum value of asyncIterable based on the fn AsyncCompare function if asyncIterable contains at least one value. Otherwise, returns an empty async iterable.

Type Parameters

Value

Parameters

fn: AsyncCompare<Value>

asyncIterable: AsyncIterable<Value, any, any>

Returns

AsyncIterable<Value, any, any>

Example

console.log(
await pipe(
asAsync([`eating`, `sleeping`, `yawning`]),
minByAsync((a, b) => a.length - b.length),
getAsync,
),
)
//=> eating

Defined in

statistics.d.ts:374

minByAsync(fn)

minByAsync<Value>(fn): (asyncIterable) => AsyncIterable<Value, any, any>

Returns an async iterable containing a minimum value of asyncIterable based on the fn AsyncCompare function if asyncIterable contains at least one value. Otherwise, returns an empty async iterable.

Type Parameters

Value

Parameters

fn: AsyncCompare<Value>

Returns

Function

Parameters

asyncIterable: AsyncIterable<Value, any, any>

Returns

AsyncIterable<Value, any, any>

Example

console.log(
await pipe(
asAsync([`eating`, `sleeping`, `yawning`]),
minByAsync((a, b) => a.length - b.length),
getAsync,
),
)
//=> eating

Defined in

statistics.d.ts:374