Comparing version 1.0.10 to 1.0.11
{ | ||
"name": "terminus", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"description": "An abstraction for making stream.Writable streams without all the boilerplate.", | ||
@@ -26,9 +26,9 @@ "main": "terminus.js", | ||
"dependencies": { | ||
"readable-stream": "~1.0.27-1", | ||
"xtend": "~3.0.0" | ||
"readable-stream": "~1.0.33", | ||
"xtend": "~4.0.0" | ||
}, | ||
"devDependencies": { | ||
"tape": "~2.13.2", | ||
"stream-spigot": "~3.0.3", | ||
"through2-spy": "~1.1.1" | ||
"tape": "~3.0.1", | ||
"stream-spigot": "~3.0.4", | ||
"through2-spy": "~1.2.0" | ||
}, | ||
@@ -35,0 +35,0 @@ "repository": { |
@@ -6,5 +6,2 @@ terminus | ||
[![david-dm](https://david-dm.org/brycebaril/node-terminus.png)](https://david-dm.org/brycebaril/node-terminus/) | ||
[![david-dm](https://david-dm.org/brycebaril/node-terminus/dev-status.png)](https://david-dm.org/brycebaril/node-terminus#info=devDependencies/) | ||
`terminus` makes it easier to create streams2 Writable streams. You can either use it like `through2` to eliminate subclassing boilerplate, or use one of the provided helper terminus streams. | ||
@@ -35,5 +32,5 @@ | ||
/* | ||
MY | ||
DOG | ||
HAS | ||
MY | ||
DOG | ||
HAS | ||
FLEAS | ||
@@ -51,5 +48,5 @@ */ | ||
/* | ||
my | ||
dog | ||
has | ||
my | ||
dog | ||
has | ||
fleas | ||
@@ -56,0 +53,0 @@ */ |
@@ -61,5 +61,5 @@ module.exports = make | ||
if (options.objectMode) | ||
fn(this._collection) | ||
fn.call(this, this._collection) | ||
else | ||
fn(Buffer.concat(this._collection)) | ||
fn.call(this, Buffer.concat(this._collection)) | ||
}) | ||
@@ -76,5 +76,5 @@ | ||
return make(options, function (chunk, encoding, callback) { | ||
fn(chunk, encoding) | ||
fn.call(this, chunk, encoding) | ||
return callback() | ||
}) | ||
} | ||
} |
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
62
7676
159
+ Addedxtend@4.0.2(transitive)
- Removedxtend@3.0.0(transitive)
Updatedreadable-stream@~1.0.33
Updatedxtend@~4.0.0