github-pages-deploy-action/node_modules/is-promise
2020-03-31 08:57:48 -04:00
..
.npmignore Dependencies 2020-03-06 22:45:40 -05:00
.travis.yml Dependencies 2020-03-06 22:45:40 -05:00
index.js Dependencies 2020-03-06 22:45:40 -05:00
LICENSE Dependencies 2020-03-06 22:45:40 -05:00
package.json 3.4.3 Dependencies 2020-03-31 08:57:48 -04:00
readme.md Dependencies 2020-03-06 22:45:40 -05: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

var isPromise = require('is-promise');

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

License

MIT