Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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

  • 2.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10M
decreased by-3.52%
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 06 Sep 2015

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

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