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.1.4 to 0.1.5

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.1.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.4...@agoric/promise-kit@0.1.5) (2020-09-16)
**Note:** Version bump only for package @agoric/promise-kit
## 0.1.4 (2020-08-31)

@@ -8,0 +16,0 @@

27

package.json
{
"name": "@agoric/promise-kit",
"version": "0.1.4",
"version": "0.1.5",
"description": "Helper for making promises",

@@ -14,3 +14,4 @@ "main": "src/promiseKit.js",

"lint-check": "yarn lint",
"lint": "yarn lint:types && eslint '**/*.js'",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:eslint": "eslint '**/*.js'",
"lint:types": "tsc -p jsconfig.json",

@@ -34,7 +35,8 @@ "lint-fix-jessie": "eslint -c '.eslintrc-jessie.js' --fix '**/*.js'",

"dependencies": {
"@agoric/eventual-send": "^0.10.0"
"@agoric/eventual-send": "^0.11.0"
},
"devDependencies": {
"ava": "^3.11.1",
"esm": "^3.2.25"
"ava": "^3.12.1",
"esm": "^3.2.25",
"nyc": "^15.1.0"
},

@@ -48,4 +50,6 @@ "files": [

"airbnb-base",
"plugin:prettier/recommended"
"plugin:prettier/recommended",
"plugin:jsdoc/recommended"
],
"parser": "@typescript-eslint/parser",
"env": {

@@ -78,3 +82,10 @@ "es6": true

"no-inner-declarations": "off",
"import/prefer-default-export": "off"
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-property-description": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-returns-description": "off"
}

@@ -101,3 +112,3 @@ },

},
"gitHead": "709048cc133b0b2b26a9774315c18c5e828ea6ab"
"gitHead": "f5ee0a03901539beb8e8f4aca7b20e01bfbf6ab3"
}

@@ -71,2 +71,3 @@ /* global harden globalThis */

/* eslint-disable jsdoc/valid-types */
/**

@@ -78,2 +79,3 @@ * Determine if the argument is a Promise.

*/
/* eslint-enable jsdoc/valid-types */
export function isPromise(maybePromise) {

@@ -80,0 +82,0 @@ return Promise.resolve(maybePromise) === maybePromise;

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