📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP

is-promise

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
i

is-promise

Test whether an object looks like a promises-a+ promise

4.0.0
latest
100

Supply Chain Security

100

Vulnerability

64

Quality

78

Maintenance

100

License

Version published
Weekly downloads
11M
-19.5%
Maintainers
2
Weekly downloads
 
Created
Issues
2

What is is-promise?

The is-promise npm package is a simple utility that checks if a given object is a promise. It is useful for ensuring that a value conforms to the Promise interface, which is essential in asynchronous programming.

What are is-promise's main functionalities?

Check if a value is a promise

This feature allows you to check if a given value is a promise. The function returns true if the value is a promise and false otherwise.

const isPromise = require('is-promise');

const promise = new Promise((resolve, reject) => {});
const notPromise = {};

console.log(isPromise(promise)); // true
console.log(isPromise(notPromise)); // false

Other packages similar to is-promise

FAQs

Package last updated on 27 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts