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

@endo/init

Package Overview
Dependencies
Maintainers
5
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@endo/init - npm Package Compare versions

Comparing version 0.5.52 to 0.5.53

debug.d.ts

24

package.json
{
"name": "@endo/init",
"version": "0.5.52",
"version": "0.5.53",
"description": "Prepare Endo environment on import",

@@ -21,2 +21,4 @@ "type": "module",

"build": "exit 0",
"prepack": "tsc --build jsconfig.build.json",
"postpack": "git clean -f '*.d.ts*'",
"test": "ava",

@@ -26,14 +28,15 @@ "test:xs": "exit 0",

"lint-fix": "eslint --fix '**/*.js'",
"lint": "eslint '**/*.js'"
"lint": "yarn lint:types && eslint '**/*.js'",
"lint:types": "tsc -p jsconfig.json"
},
"devDependencies": {
"@endo/compartment-mapper": "^0.8.0",
"@endo/ses-ava": "^0.2.36",
"ava": "^3.12.1"
"@endo/compartment-mapper": "^0.8.1",
"@endo/ses-ava": "^0.2.37",
"ava": "^5.1.0"
},
"dependencies": {
"@endo/base64": "^0.2.28",
"@endo/eventual-send": "^0.16.8",
"@endo/lockdown": "^0.1.24",
"@endo/promise-kit": "^0.2.52"
"@endo/base64": "^0.2.29",
"@endo/eventual-send": "^0.16.9",
"@endo/lockdown": "^0.1.25",
"@endo/promise-kit": "^0.2.53"
},

@@ -71,2 +74,3 @@ "files": [

"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",

@@ -78,3 +82,3 @@ "singleQuote": true

},
"gitHead": "da16a94856482e36296b7cae16d715aa63344928"
"gitHead": "ab8d64ae6fc9c628a2d1c02d16bf9ef249f5c8dc"
}

@@ -43,3 +43,3 @@ import { createHook, AsyncResource } from 'async_hooks';

const { description } = sym;
if (description in asyncHooksSymbols) {
if (description && description in asyncHooksSymbols) {
if (setAsyncSymbol(description, sym)) {

@@ -143,3 +143,5 @@ found += 1;

state = {
// @ts-expect-error key may be undefined
[asyncHooksSymbols.async_id_symbol]: undefined,
// @ts-expect-error key may be undefined
[asyncHooksSymbols.trigger_async_id_symbol]: undefined,

@@ -146,0 +148,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