Skip to main content

Function: consumeAsync()

consumeAsync(asyncIterable): Promise<void>

Iterates through asyncIterable causing lazy operations to run.

Parameters

asyncIterable: AsyncIterable<unknown, any, any>

Returns

Promise<void>

Example

const asyncIterable = pipe(
asAsync([`sloth`, 2, 3]),
eachAsync(console.log),
)
// No output

await consumeAsync(asyncIterable)
//=> sloth
//=> 2
//=> 3

Defined in

side-effects.d.ts:244