DevYK 8466310f0c update README.md 3 年之前
..
LICENSE 8466310f0c update README.md 3 年之前
index.js 8466310f0c update README.md 3 年之前
index.mjs 8466310f0c update README.md 3 年之前
package.json 8466310f0c update README.md 3 年之前
readme.md 8466310f0c update README.md 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