Comparing version 1.1.10 to 1.1.11
{ | ||
"name": "pull-cat", | ||
"description": "concatenate pull-streams", | ||
"version": "1.1.10", | ||
"version": "1.1.11", | ||
"homepage": "https://github.com/pull-stream/pull-cat", | ||
@@ -12,4 +12,4 @@ "repository": { | ||
"pull-abortable": "~4.1.0", | ||
"tape": "~1.0", | ||
"pull-pushable": "~1.1.4", | ||
"tape": "~4.6", | ||
"pull-pushable": "~2.0.1", | ||
"pull-stream": "^3.4.2" | ||
@@ -16,0 +16,0 @@ }, |
# pull-cat | ||
concatenate pull-streams | ||
> Concatenate pull-streams | ||
<<<<<<< HEAD | ||
## Install | ||
```shell | ||
@@ -10,5 +11,5 @@ npm install --save pull-cat | ||
## example | ||
======= | ||
construct a new source stream from a sequential list of source streams, | ||
## Example | ||
Construct a new source stream from a sequential list of source streams, | ||
reading from each one in turn until it ends, then the next, etc. | ||
@@ -22,9 +23,5 @@ If one stream errors, then the rest of the streams are aborted immediately. | ||
# example | ||
>>>>>>> master | ||
```js | ||
var cat = require('pull-cat') | ||
var pull = require('pull-stream') | ||
<<<<<<< HEAD | ||
@@ -44,12 +41,6 @@ pull( | ||
// 6 | ||
======= | ||
pull( | ||
cat([pull.values([1,2,3]), pull.values([4,5,6])]), | ||
sink... | ||
) | ||
>>>>>>> master | ||
``` | ||
## api | ||
## Api | ||
@@ -69,3 +60,1 @@ ### `cat = require('pull-cat')` | ||
MIT | ||
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6734
57