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

@travetto/worker

Package Overview
Dependencies
Maintainers
1
Versions
186
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/worker - npm Package Compare versions

Comparing version 3.3.4 to 3.4.0-rc.0

4

package.json
{
"name": "@travetto/worker",
"version": "3.3.4",
"version": "3.4.0-rc.0",
"description": "Process management utilities, with a focus on inter-process communication",

@@ -28,3 +28,3 @@ "keywords": [

"dependencies": {
"@travetto/base": "^3.3.4",
"@travetto/base": "^3.4.0-rc.0",
"generic-pool": "^3.9.0"

@@ -31,0 +31,0 @@ },

@@ -16,5 +16,6 @@ import { Util } from '@travetto/base';

*/
constructor(initial: Iterable<X> = []) {
constructor(initial: Iterable<X> = [], signal?: AbortSignal) {
this.#queue.push(...initial);
this.#size = this.#queue.length;
signal?.addEventListener('abort', () => this.close());
}

@@ -21,0 +22,0 @@

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