Static methods
staticpipeline (input:IReadable, ?intermediate:Array<IDuplex>, output:IWritable):Void
Creates a pipeline out of the given streams. input is piped to the first
element in intermediate, which is piped to the next element in
intermediate, and so on, until the last stream is piped to output. If
intermediate is null, it is treated as an empty array and input is
connected directly to output.