pull-stream
Version:
minimal pull stream
23 lines (17 loc) • 430 B
Markdown
# Sinks
A Sink is a stream that is not readable.
You *must* have a sink at the end of a pipeline
for data to move towards.
You can only use _one_ sink per pipeline.
``` js
pull(source, through, sink)
```
See also:
* [Sources](../sources/index.md)
* [Throughs](../throughs/index.md)
## [drain](./drain.md)
## [reduce](./reduce.md)
## [concat](./concat.md)
## [collect](./collect.md)
## [onEnd](./on-end.md)
## [log](./log.md)