qwqdanchun.github.io/node_modules/is-promise
qwqdanchun 1b6a0fbb18 test 2022-11-11 19:16:46 +08:00
..
LICENSE test 2022-11-11 19:16:46 +08:00
index.js test 2022-11-11 19:16:46 +08:00
index.mjs test 2022-11-11 19:16:46 +08:00
package.json test 2022-11-11 19:16:46 +08:00
readme.md test 2022-11-11 19:16:46 +08:00

readme.md

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