itcast 6e512b8ce6 aaaa 3 сар өмнө
..
LICENSE 6e512b8ce6 aaaa 3 сар өмнө
index.js 6e512b8ce6 aaaa 3 сар өмнө
index.mjs 6e512b8ce6 aaaa 3 сар өмнө
package.json 6e512b8ce6 aaaa 3 сар өмнө
readme.md 6e512b8ce6 aaaa 3 сар өмнө

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