Socket
Socket
Sign inDemoInstall

mini-queue

Package Overview
Dependencies
2
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.4 to 0.0.5

6

lib/job-queue.js

@@ -39,5 +39,5 @@ /**

config = config || {};
config.activeLimit = config.activeLimit || -1;
config.queuedLimit = config.queuedLimit || -1;
config = config || {};
config.activeLimit = typeof config.activeLimit !== 'undefined' ? config.activeLimit : -1;
config.queuedLimit = typeof config.queuedLimit !== 'undefined' ? config.queuedLimit : -1;

@@ -44,0 +44,0 @@ self.activeCount = 0;

{
"name": "mini-queue",
"version": "0.0.4",
"version": "0.0.5",
"description": "Job queue",

@@ -5,0 +5,0 @@ "main": "./index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc