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

ronomon-queue

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ronomon-queue - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

7

index.js

@@ -9,2 +9,5 @@ var PROCESSING = 1;

var self = this;
if (arguments.length > 1) {
throw new Error('too many arguments');
}
self.concurrency = Queue.parseConcurrency(concurrency);

@@ -16,2 +19,3 @@ self.pending = 0;

self.stopped = false;
self.done = undefined;
self._flags = 0;

@@ -114,2 +118,5 @@ self._arrays = [];

if (self._flags & CLOSED) return;
if (self.done !== undefined) {
throw new Error('deprecated use of `queue.done`');
}
if (error && !(self._flags & CLOSING)) {

@@ -116,0 +123,0 @@ self._flags |= CLOSING;

2

package.json
{
"name": "ronomon-queue",
"version": "0.1.1",
"version": "0.1.2",
"description": "Process thousands of asynchronous or synchronous jobs, concurrently or sequentially, safely and efficiently, without creating thousands of closures.",

@@ -5,0 +5,0 @@ "main": "index.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