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

@lightningjs/threadx

Package Overview
Dependencies
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/threadx - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

2

dist/utils.d.ts

@@ -10,3 +10,3 @@ /**

*/
export declare const resolvedGlobal: Window & typeof globalThis;
export declare const resolvedGlobal: any;
export declare function assertTruthy(condition: unknown, message?: string): asserts condition;

@@ -26,3 +26,3 @@ /*

*/
export const resolvedGlobal = self;
export const resolvedGlobal = typeof self === 'undefined' ? globalThis : self;
export function assertTruthy(condition, message) {

@@ -29,0 +29,0 @@ if (!condition) {

{
"name": "@lightningjs/threadx",
"version": "0.3.3",
"version": "0.3.4",
"description": "A web browser-based JavaScript library that helps manage the communcation of data between one or more web worker threads.",

@@ -5,0 +5,0 @@ "type": "module",

@@ -27,3 +27,4 @@ /*

*/
export const resolvedGlobal = self;
export const resolvedGlobal: any =
typeof self === 'undefined' ? globalThis : self;

@@ -30,0 +31,0 @@ export function assertTruthy(

Sorry, the diff of this file is not supported yet

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