Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

better-queue

Package Overview
Dependencies
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-queue - npm Package Compare versions

Comparing version 3.8.3 to 3.8.4

circle.yml

9

lib/queue.js

@@ -477,10 +477,3 @@ var uuid = require('node-uuid');

var self = this;
if (self.batchSize === 1 && self.batchDelay > 0) {
if (!self._batchTimeoutId) {
self._batchTimeoutId = setTimeout(function () {
self._batchTimeoutId = null;
self._processNextIfAllowed();
}, self.batchDelay)
}
} else if (self.length >= self.batchSize) {
if (self.length >= self.batchSize) {
if (self._batchTimeoutId) {

@@ -487,0 +480,0 @@ clearTimeout(self._batchTimeoutId);

{
"name": "better-queue",
"version": "3.8.3",
"version": "3.8.4",
"description": "Better Queue for NodeJS",

@@ -30,3 +30,4 @@ "main": "lib/queue.js",

"devDependencies": {
"mocha": "^2.3.4"
"mocha": "^2.3.4",
"mocha-junit-reporter": "^1.12.1"
},

@@ -33,0 +34,0 @@ "dependencies": {

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