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

resolvable-promise

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

resolvable-promise - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

5

index.d.ts

@@ -7,5 +7,4 @@ type Executor<T> = (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void;

resolve(value: T): Promise<T>;
resolve(): Promise<void>;
reject(reason?: any): Promise<T>;
resolve(value?: T): void;
reject(reason?: any): void;

@@ -12,0 +11,0 @@ }

2

package.json
{
"name": "resolvable-promise",
"version": "1.0.0",
"version": "1.0.1",
"description": "Promises with the resolve and reject functions exposed",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -11,2 +11,9 @@ # resolvable-promise

### Installation
```
npm install resolvable-promise
```
#
### Basic Usage

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