New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

highland-process

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

highland-process - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

14

lib/process.js

@@ -13,9 +13,12 @@ var _ = require('highland'),

return function(stream) {
var errors = _();
var errors,
errorsToResults,
out = exports.from(process);
stream
.consume(errorsTo(errors))
.pipe(process.stdin);
errorsToResults = errorsTo(stream);
stream = errorsToResults.stream;
errors = errorsToResults.errors;
stream.pipe(process.stdin);
return _.sequence([

@@ -64,4 +67,3 @@ out,

}
push(null, _.nil);
return next();
return push(null, _.nil);
}

@@ -68,0 +70,0 @@

{
"name": "highland-process",
"version": "1.0.2",
"version": "1.0.3",
"description": "Utility that lets you turn a process into a highland stream.",

@@ -30,4 +30,4 @@ "main": "index.js",

"highland": "^2.2.0",
"highland-errors-to": "^1.0.0"
"highland-errors-to": "^2.0.0"
}
}
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