Files: 48f11ee4bbabe3ee3bf0c9e02f75c39456e53582 / 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