Package Exports
- pull-robin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pull-robin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pull-robin
Read source pull-streams, in round robin fashion.
Usage
robin(streams...)
Example
var pull = require("pull-stream");
var robin = require("pull-robin");
pull(
robin(
pull.values([1,4,7]),
pull.values([2,5]),
pull.values([3,6,8])
),
pull.log()
)
install
With npm do:
npm install pull-robin
license
MIT