Musique/node_modules/is-promise
2021-12-06 16:34:00 +01:00
..
index.js Update to v13 and add queue and completely change code 2021-12-06 16:34:00 +01:00
index.mjs Update to v13 and add queue and completely change code 2021-12-06 16:34:00 +01:00
LICENSE Update to v13 and add queue and completely change code 2021-12-06 16:34:00 +01:00
package.json Update to v13 and add queue and completely change code 2021-12-06 16:34:00 +01:00
readme.md Update to v13 and add queue and completely change code 2021-12-06 16:34:00 +01: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