![]() |
%!s(int64=2) %!d(string=hai) anos | |
---|---|---|
.. | ||
LICENSE | %!s(int64=2) %!d(string=hai) anos | |
README.md | %!s(int64=2) %!d(string=hai) anos | |
example.js | %!s(int64=2) %!d(string=hai) anos | |
index.js | %!s(int64=2) %!d(string=hai) anos | |
package.json | %!s(int64=2) %!d(string=hai) anos | |
test.js | %!s(int64=2) %!d(string=hai) anos |
Turn a readable stream into multiple readable streamx streams.
npm install teex
const tee = require('teex')
// a, b are readable streams that are "clones"
// of someReadableStream. both streams need to
// be flowing, for someReadableStream to flow
const [a, b] = tee(someReadableStream)
const streams = tee(s, [howMany])
Split a readable stream into multiple streams.
The howMany
argument indicates how many streams
to split into and defaults to 2.
MIT