formation 06132753e0 add express пре 4 година
..
.npmignore 06132753e0 add express пре 4 година
.travis.yml 06132753e0 add express пре 4 година
LICENSE 06132753e0 add express пре 4 година
index.js 06132753e0 add express пре 4 година
package.json 06132753e0 add express пре 4 година
readme.md 06132753e0 add express пре 4 година

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

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

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

License

MIT