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

node-worker-pool

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-worker-pool - npm Package Compare versions

Comparing version 2.3.0 to 2.4.0

2

package.json
{
"name": "node-worker-pool",
"version": "2.3.0",
"version": "2.4.0",
"dependencies": {

@@ -5,0 +5,0 @@ "q": "~0.9.7"

@@ -138,9 +138,10 @@ "use strict";

this._isDestroyed = true;
return Q.all(this._allPendingResponses).then(function() {
return Q.all(allWorkers.map(function(worker) {
return worker.destroy();
}));
});
return Q.allSettled(this._allPendingResponses)
.then(function() {
return Q.all(allWorkers.map(function(worker) {
return worker.destroy();
}));
});
};
module.exports = WorkerPool;
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