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

@agoric/eventual-send

Package Overview
Dependencies
Maintainers
5
Versions
322
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/eventual-send - npm Package Compare versions

Comparing version 0.14.1-dev-0c4d32b.0 to 0.14.1-dev-0c5d62c.0

13

package.json
{
"name": "@agoric/eventual-send",
"version": "0.14.1-dev-0c4d32b.0+0c4d32b",
"version": "0.14.1-dev-0c5d62c.0+0c5d62c",
"description": "Extend a Promise class to implement the eventual-send API",

@@ -13,5 +13,4 @@ "type": "module",

"build": "exit 0",
"lint-fix": "yarn lint:eslint --fix && yarn lint:types",
"lint-check": "yarn lint",
"lint": "yarn lint:types && yarn lint:eslint",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error lint:*",
"lint:types": "tsc -p jsconfig.json",

@@ -31,4 +30,4 @@ "lint:eslint": "eslint '**/*.js'"

"devDependencies": {
"@agoric/lockdown": "0.1.2-dev-0c4d32b.0+0c4d32b",
"@endo/ses-ava": "^0.2.14",
"@endo/lockdown": "^0.1.5",
"@endo/ses-ava": "^0.2.17",
"ava": "^3.12.1",

@@ -60,3 +59,3 @@ "c8": "^7.7.2"

},
"gitHead": "0c4d32bb53e935bee28e64b53d9d74ae4c89b44a"
"gitHead": "0c5d62ceebe0e7a6e2a385256ab059637b83d01d"
}

@@ -282,5 +282,4 @@ // @ts-check

// local handled Promise.
[pendingHandler, continueForwarding] = makePostponedHandler(
HandledPromise,
);
[pendingHandler, continueForwarding] =
makePostponedHandler(HandledPromise);
}

@@ -430,3 +429,3 @@

// Resolving a Presence returns the pre-registered handled promise.
let resolvedPromise = presenceToPromise.get(value);
let resolvedPromise = presenceToPromise.get(/** @type {any} */ (value));
if (!resolvedPromise) {

@@ -567,3 +566,5 @@ resolvedPromise = Promise.resolve(value);

const unknownBaseHandledPromise = baseHandledPromise;
HandledPromise = /** @type {typeof HandledPromise} */ (unknownBaseHandledPromise);
HandledPromise = /** @type {typeof HandledPromise} */ (
unknownBaseHandledPromise
);

@@ -570,0 +571,0 @@ // We cannot harden(HandledPromise) because we're a vetted shim which

@@ -14,7 +14,5 @@ /* eslint-disable no-shadow,no-unused-vars,no-use-before-define,no-var,vars-on-top */

: T extends Record<string | number | symbol, Function>
? ERef<
{
[K in keyof T]: EOnly<T[K]>;
}
>
? ERef<{
[K in keyof T]: EOnly<T[K]>;
}>
: ERef<T>;

@@ -21,0 +19,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