Files: 22c80b9c74339096c81f7668440f2b298fad8116 / docs / throughs / index.md
877 bytesRaw
Throughs
A Through is a stream that both reads and is read by another stream.
Through streams are optional.
Put through streams in-between sources and sinks, like this:
pull(source, through, sink)
Also, if you don't have the source/sink yet, you can pipe multiple through streams together to get one through stream!
var throughABC = function () {
return pull(
throughA(),
throughB(),
throughC()
)
}
Which can then be treated like a normal through stream!
pull(source(), throughABC(), sink())
See also:
map
asyncMap
filter
filterNot
unique
nonUnique
take
flatten
Built with git-ssb-web