ljoaquim 1590311121 first commit 10 hónapja
..
LICENSE 1590311121 first commit 10 hónapja
index.d.ts 1590311121 first commit 10 hónapja
index.js 1590311121 first commit 10 hónapja
index.mjs 1590311121 first commit 10 hónapja
package.json 1590311121 first commit 10 hónapja
readme.md 1590311121 first commit 10 hónapja

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