Huge News!Announcing our $40M Series B led by Abstract Ventures.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-f0e42b1.0 to 0.14.1-dev-f0eba3c.0

18

package.json
{
"name": "@agoric/eventual-send",
"version": "0.14.1-dev-f0e42b1.0+f0e42b1",
"version": "0.14.1-dev-f0eba3c.0+f0eba3c",
"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,5 +30,4 @@ "lint:eslint": "eslint '**/*.js'"

"devDependencies": {
"@agoric/assert": "0.3.16-dev-f0e42b1.0+f0e42b1",
"@agoric/lockdown": "0.1.2-dev-f0e42b1.0+f0e42b1",
"@endo/ses-ava": "^0.2.8",
"@endo/lockdown": "^0.1.5",
"@endo/ses-ava": "^0.2.17",
"ava": "^3.12.1",

@@ -52,6 +50,2 @@ "c8": "^7.7.2"

},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"publishConfig": {

@@ -66,3 +60,3 @@ "access": "public"

},
"gitHead": "f0e42b11046469bf29394c1bdd7ef1fb772f6474"
"gitHead": "f0eba3ca6f451618e47cdaa721bcf3045f862a0f"
}
// @ts-check
import { trackTurns } from './track-turns.js';
// eslint-disable-next-line spaced-comment
/// <reference path="index.d.ts" />

@@ -39,6 +38,7 @@

// #95 for details.
return (...args) => harden(HandledPromise.applyMethod(x, p, args));
return (...args) =>
harden(HandledPromise.applyMethod(x, p, harden(args)));
},
apply(_target, _thisArg, argArray = []) {
return harden(HandledPromise.applyFunction(x, argArray));
return harden(HandledPromise.applyFunction(x, harden(argArray)));
},

@@ -65,3 +65,3 @@ has(_target, _p) {

return (...args) => {
HandledPromise.applyMethodSendOnly(x, p, args);
HandledPromise.applyMethodSendOnly(x, p, harden(args));
return undefined;

@@ -71,3 +71,3 @@ };

apply(_target, _thisArg, argsArray = []) {
HandledPromise.applyFunctionSendOnly(x, argsArray);
HandledPromise.applyFunctionSendOnly(x, harden(argsArray));
return undefined;

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