Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

terminus

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terminus - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

12

package.json
{
"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()
})
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc