ken_nogi/NodeJS/postfixconsole_org2/node_modules/is-promise
Kenichiro NOGI 88a402ce0f up
2026-07-10 18:13:30 +09:00
..
index.d.ts up 2026-07-10 18:13:30 +09:00
index.js up 2026-07-10 18:13:30 +09:00
index.mjs up 2026-07-10 18:13:30 +09:00
LICENSE up 2026-07-10 18:13:30 +09:00
package.json up 2026-07-10 18:13:30 +09:00
readme.md up 2026-07-10 18:13:30 +09:00

is-promise

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

Build Status Dependency Status NPM version

Installation

$ npm install is-promise

You can also use it client side via npm.

API

import isPromise from 'is-promise';

isPromise(Promise.resolve());//=>true
isPromise({then:function () {...}});//=>true
isPromise(null);//=>false
isPromise({});//=>false
isPromise({then: true})//=>false

License

MIT