Skip to content

Function: pipeStream()

pipeStream<TIn, Ops>(source, operators): Stream<any>

Defined in: abstractions/stream.ts:223

Pipes a stream through a series of transformation operators, returning a new derived stream.

Type Parameters

TIn

TIn

Ops

Ops extends Operator<any, any>[]

Parameters

source

Stream<TIn>

operators

[...Ops[]]

Returns

Stream<any>

Released under the MIT License.