New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@webqit/quantum-js

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@webqit/quantum-js - npm Package Compare versions

Comparing version 4.0.2 to 4.0.3

4

package.json

@@ -11,3 +11,3 @@ {

"homepage": "https://webqit.io/tooling/quantum-js",
"version": "4.0.2",
"version": "4.0.3",
"license": "MIT",

@@ -37,3 +37,3 @@ "repository": {

"dependencies": {
"@webqit/observer": "^2.2.10",
"@webqit/observer": "^2.2.11",
"acorn": "^8.8.1",

@@ -40,0 +40,0 @@ "astring": "^1.8.3"

/**
* @imports
*/
import { other } from "../util.js";
import { env } from "../util.js";

@@ -13,3 +13,3 @@ export default class _EventTarget extends EventTarget {

super();
other.setMaxListeners?.( 0, this );
env.setMaxListeners?.( 0, this );
}

@@ -16,0 +16,0 @@

@@ -23,2 +23,2 @@

export const other = {};
export const env = {};

@@ -9,6 +9,6 @@

import { setMaxListeners } from 'events';
import { other as otherUtil1 } from '../src/util.js';
import { other as otherUtil2 } from '@webqit/observer/src/util.js';
otherUtil1.setMaxListeners = setMaxListeners;
otherUtil2.setMaxListeners = setMaxListeners;
import { env as env1 } from '../src/util.js';
import { env as env2 } from '@webqit/observer/src/util.js';
env1.setMaxListeners = setMaxListeners;
env2.setMaxListeners = setMaxListeners;

@@ -15,0 +15,0 @@ const promise = ( timeout, value ) => new Promise( res => setTimeout(() => res( value ), timeout ) );

Sorry, the diff of this file is not supported yet

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