p-is-promise

Check if something is a promise

MIT 6 个版本
安装
npm install p-is-promise
yarn add p-is-promise
pnpm add p-is-promise
bun add p-is-promise
README

p-is-promise

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

import isPromise from 'p-is-promise';
import Bluebird from 'bluebird';

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

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

isPromise('🦄');
//=> false

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.
版本列表
4.0.0 2021-04-16
3.0.0 2019-07-01
2.1.0 2019-04-06
2.0.0 2018-09-24
1.1.0 2016-11-28
1.0.0 2016-11-26