Socket
Socket
Sign inDemoInstall

p-is-promise

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    p-is-promise

Check if something is a promise


Version published
Weekly downloads
5.7M
decreased by-0.89%
Maintainers
1
Install size
4.26 kB
Created
Weekly downloads
 

Package description

What is p-is-promise?

The p-is-promise npm package is a simple utility that allows you to check if a value is a Promise. This can be particularly useful when dealing with asynchronous operations in JavaScript, where you might need to differentiate between promises and other types of values.

What are p-is-promise's main functionalities?

Check if a value is a Promise

This feature allows you to easily determine whether a given value is a Promise. It's useful for conditional logic where the handling of a value depends on whether it's asynchronous (a Promise) or synchronous.

const pIsPromise = require('p-is-promise');

console.log(pIsPromise(Promise.resolve())); // true
console.log(pIsPromise('not a promise')); // false

Other packages similar to p-is-promise

Readme

Source

p-is-promise Build Status

Check if something is a promise

Why not is-promise? That module checks for a thenable, not an ES2015 promise. This one is stricter.

You most likely don't need this. Just pass your value to Promise.resolve() and let it handle it.

Can be useful if you need to create a fast path for a synchronous operation.

Install

$ npm install p-is-promise

Usage

const pIsPromise = require('p-is-promise');
const Bluebird = require('bluebird');

pIsPromise(Promise.resolve('🦄'));
//=> true

pIsPromise(Bluebird.resolve('🦄'));
//=> true

pIsPromise('🦄');
//=> false
  • More…

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 24 Sep 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc