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

globalcache

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

globalcache - npm Package Compare versions

Comparing version 2.10.1 to 2.10.2

19

index.js

@@ -142,2 +142,3 @@ var util = require('util'),

//self.emit('error', err);
sendNextMessage();
});

@@ -151,2 +152,3 @@

//self.emit('error', err);
sendNextMessage();
});

@@ -186,11 +188,14 @@

debug && console.log('Delay before going to another item in a queue...');
setTimeout(function(){
isSending = false;
// go to the next message in the queue if any
if (messageQueue.length){
send_();
}
}, DELAY_BETWEEN_COMMANDS);
setTimeout(sendNextMessage, DELAY_BETWEEN_COMMANDS);
});
};
function sendNextMessage(){
isSending = false;
// go to the next message in the queue if any
if (messageQueue.length){
send_();
}
}
this.disconnect = this.end = this.destroy = function (callback) {

@@ -197,0 +202,0 @@ if (this.socket)

@@ -43,3 +43,3 @@ {

},
"version": "2.10.1"
"version": "2.10.2"
}
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