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

node-pipeline

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pipeline - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

9

index.js

@@ -35,6 +35,9 @@ var util = require("util"),

var setImmediate = global.setImmediate || process.nextTick;
this.on('step', function(name, action) {
setImmediate(action);
if (typeof(setImmediate) === 'function') {
setImmediate(action);
}
else {
setTimeout(action, 0);
}
});

@@ -41,0 +44,0 @@

{
"name": "node-pipeline",
"version": "1.0.0",
"version": "1.0.1",
"main": "index",

@@ -5,0 +5,0 @@ "description": "Simple module to performing asynchronous inter-dependent series operations in node. Unlike other more complicated approaches, this is pure javascript and very small (~100 lines of code with comments).",

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