Socket
Socket
Sign inDemoInstall

pipe-io

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pipe-io - npm Package Compare versions

Comparing version 1.1.30 to 1.1.31

.travis.yml

19

lib/pipe.js

@@ -73,12 +73,13 @@ (function () {

callWhenOpen(write, function(error) {
if (error) {
callback(error);
read.on('end', onReadEnd);
read.on('error', onReadError);
if (options.end)
write.on('finish', onWriteFinish);
callWhenOpen(write, function(e) {
if (e || read && error) {
e && onError(e);
onEnd();
} else {
if (options.end)
write.on('finish', onWriteFinish);
read.on('end', onReadEnd);
read.on('error', onReadError);
write.on('error', onWriteError);

@@ -85,0 +86,0 @@

{
"name": "pipe-io",
"version": "1.1.30",
"version": "1.1.31",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",

@@ -15,2 +15,5 @@ "description": "Pipe streams and handle events",

},
"scripts": {
"test": "tape test/*.js"
},
"dependencies": {},

@@ -21,3 +24,6 @@ "license": "MIT",

},
"main": "./lib/pipe.js"
"main": "./lib/pipe.js",
"devDependencies": {
"tape": "~4.0.0"
}
}

Sorry, the diff of this file is not supported yet

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