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

tress

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tress - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

10

index.js

@@ -113,7 +113,7 @@ function Tress(worker, concurrency){ // function worker(job, done)

var _status = (job) => {
_queue.waiting.indexOf(job) >= 0 ? 'waiting' :
_queue.running.indexOf(job) >= 0 ? 'running' :
_queue.finished.indexOf(job) >= 0 ? 'finished' :
_queue.pending.indexOf(job) >= 0 ? 'pending' :
'missing'
_queue.waiting.indexOf(job) >= 0 ? 'waiting' :
_queue.active.indexOf(job) >= 0 ? 'active' :
_queue.finished.indexOf(job) >= 0 ? 'finished' :
_queue.failed.indexOf(job) >= 0 ? 'failed' :
'missing'
};

@@ -120,0 +120,0 @@

{
"name": "tress",
"version": "1.0.3",
"version": "1.0.4",
"description": "Easy to use asynchronous job queue. Successor of 'caolan/async.queue'.",

@@ -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