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

putil-taskqueue

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

putil-taskqueue - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

3

lib/taskqueue.js

@@ -23,2 +23,3 @@ /* putil-taskqueue

this._cancelOnError = options.cancelOnError;
this._maxQueue = options.maxQueue;
}

@@ -34,2 +35,4 @@

proto.enqueue = function(resolver) {
if (this._maxQueue && this._queue.length >= this._maxQueue)
throw new Error('Queue limit exceeds max quee size');
this._queue.push(resolver);

@@ -36,0 +39,0 @@ this.next();

2

package.json
{
"name": "putil-taskqueue",
"description": "Very simple async task queue for ES6",
"version": "1.1.0",
"version": "1.1.1",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

@@ -8,3 +8,3 @@ # putil-taskqueue

Very simple async task queue for ES6.
Very simple async task queue for Javascript.

@@ -17,3 +17,3 @@ ## Installation

- node `>= 6.x`;
- node `>= 4.x`;

@@ -20,0 +20,0 @@ ### License

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