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.7.2 to 3.7.3

8

lib/queue.js

@@ -371,2 +371,3 @@ var uuid = require('node-uuid');

var oldTask = null;
var isNew = true;
var putTask = function () {

@@ -384,3 +385,3 @@

id: uuid.v4(),
isNew: !oldTask,
isNew: isNew,
task: newTask,

@@ -436,2 +437,7 @@ priority: priority,

// Check if it's already in the store
if (savedTask !== undefined) {
isNew = false;
}
// Check if task is writing

@@ -438,0 +444,0 @@ if (self._writing[taskId]) {

2

package.json
{
"name": "better-queue",
"version": "3.7.2",
"version": "3.7.3",
"description": "Better Queue for NodeJS",

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

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