@agoric/promise-kit
Advanced tools
Comparing version 0.2.3 to 0.2.4
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.2.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.3...@agoric/promise-kit@0.2.4) (2021-03-24) | ||
**Note:** Version bump only for package @agoric/promise-kit | ||
## [0.2.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.2...@agoric/promise-kit@0.2.3) (2021-03-16) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@agoric/promise-kit", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "Helper for making promises", | ||
@@ -16,3 +16,3 @@ "parsers": { | ||
"test:xs": "exit 0", | ||
"lint-fix": "yarn lint --fix", | ||
"lint-fix": "yarn lint:eslint --fix && yarn lint:types", | ||
"lint-check": "yarn lint", | ||
@@ -37,3 +37,3 @@ "lint": "yarn lint:types && yarn lint:eslint", | ||
"dependencies": { | ||
"@agoric/eventual-send": "^0.13.3" | ||
"@agoric/eventual-send": "^0.13.4" | ||
}, | ||
@@ -73,3 +73,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "5ad5f483f05ba20d903b4423bfb4fa0d2ce75fd7" | ||
"gitHead": "be478ee84773b8e403cf896e53df28146a60f976" | ||
} |
@@ -71,3 +71,2 @@ /* global globalThis */ | ||
/* eslint-disable jsdoc/valid-types */ | ||
/** | ||
@@ -79,3 +78,2 @@ * Determine if the argument is a Promise. | ||
*/ | ||
/* eslint-enable jsdoc/valid-types */ | ||
export function isPromise(maybePromise) { | ||
@@ -82,0 +80,0 @@ return Promise.resolve(maybePromise) === maybePromise; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10393
72