Luna 4f63b4f9a0 | ||
---|---|---|
.. | ||
LICENSE | ||
index.js | ||
index.mjs | ||
package.json | ||
readme.md |
readme.md
is-promise
Test whether an object looks like a promises-a+ promise
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