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

@agoric/promise-kit

Package Overview
Dependencies
Maintainers
5
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/promise-kit - npm Package Compare versions

Comparing version 0.2.30-dev-230d998.0 to 0.2.30-dev-241ac92.0

16

package.json
{
"name": "@agoric/promise-kit",
"version": "0.2.30-dev-230d998.0+230d998",
"version": "0.2.30-dev-241ac92.0+241ac92",
"description": "Helper for making promises",

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

"test:xs": "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:eslint": "eslint '**/*.js'",

@@ -34,5 +33,2 @@ "lint:types": "tsc -p jsconfig.json"

"homepage": "https://github.com/Agoric/agoric-sdk#readme",
"dependencies": {
"@agoric/eventual-send": "0.14.1-dev-230d998.0+230d998"
},
"devDependencies": {

@@ -53,6 +49,2 @@ "ava": "^3.12.1"

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

@@ -67,3 +59,3 @@ "access": "public"

},
"gitHead": "230d998b7b1b633eac02d68c1e4a8ce8fd3d9dd5"
"gitHead": "241ac926fdb8793e4cd94c921555f44744864807"
}
/* global globalThis */
// @ts-check
// eslint-disable-next-line spaced-comment
/// <reference types="ses"/>
/** @type {import('@agoric/eventual-send').HandledPromiseConstructor | PromiseConstructor} */
/** @type {PromiseConstructor} */
const BestPipelinablePromise = globalThis.HandledPromise || Promise;

@@ -12,3 +11,3 @@

* @template T
* @typedef {Object} PromiseRecord A reified Promise
* @typedef {Object} PromiseKit A reified Promise
* @property {(value: ERef<T>) => void} resolve

@@ -20,3 +19,10 @@ * @property {(reason: any) => void} reject

/**
* PromiseRecord is deprecated in favor of PromiseKit.
*
* @template T
* @typedef {PromiseKit<T>} PromiseRecord
*/
/**
* @template T
* @typedef {T | PromiseLike<T>} ERef

@@ -40,3 +46,3 @@ * A reference of some kind for to an object of type T. It may be a direct

* @template T
* @returns {PromiseRecord<T>}
* @returns {PromiseKit<T>}
*/

@@ -43,0 +49,0 @@ export function makePromiseKit() {

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