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

@agoric/eventual-send

Package Overview
Dependencies
Maintainers
4
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.4.2 to 0.4.3

5

dist/eventual-send.cjs.js

@@ -525,2 +525,5 @@ 'use strict';

// console.log(`sending`, optKey, o[optKey], o);
if (typeof o[optKey] !== 'function') {
throw TypeError(`o[${JSON.stringify(optKey)}] is not a function`);
}
return o[optKey](...args);

@@ -532,5 +535,5 @@ }),

exports.HandledPromise = HandledPromise;
exports.E = E;
exports.HandledPromise = HandledPromise;
exports.makeHandledPromise = makeHandledPromise;
exports.maybeExtendPromise = maybeExtendPromise;

@@ -521,2 +521,5 @@ /* global globalThis window */

// console.log(`sending`, optKey, o[optKey], o);
if (typeof o[optKey] !== 'function') {
throw TypeError(`o[${JSON.stringify(optKey)}] is not a function`);
}
return o[optKey](...args);

@@ -528,2 +531,2 @@ }),

export { E, HandledPromise, makeHandledPromise, maybeExtendPromise };
export { HandledPromise, E, makeHandledPromise, maybeExtendPromise };

@@ -527,2 +527,5 @@ (function (global, factory) {

// console.log(`sending`, optKey, o[optKey], o);
if (typeof o[optKey] !== 'function') {
throw TypeError(`o[${JSON.stringify(optKey)}] is not a function`);
}
return o[optKey](...args);

@@ -534,4 +537,4 @@ }),

exports.HandledPromise = HandledPromise;
exports.E = E;
exports.HandledPromise = HandledPromise;
exports.makeHandledPromise = makeHandledPromise;

@@ -538,0 +541,0 @@ exports.maybeExtendPromise = maybeExtendPromise;

2

package.json
{
"name": "@agoric/eventual-send",
"version": "0.4.2",
"version": "0.4.3",
"description": "Extend a Promise class to implement the eventual-send API",

@@ -5,0 +5,0 @@ "main": "dist/eventual-send.cjs.js",

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