You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

is-promise

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-promise

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

1.0.1
Source
npmnpm
Version published
Weekly downloads
21M
11.04%
Maintainers
1
Weekly downloads
 
Created

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 20 May 2014

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