15270821319 4e5c5d37f9 初步设计数据库,注册登录 6 months ago
..
LICENSE 4e5c5d37f9 初步设计数据库,注册登录 6 months ago
index.js 4e5c5d37f9 初步设计数据库,注册登录 6 months ago
index.mjs 4e5c5d37f9 初步设计数据库,注册登录 6 months ago
package.json 4e5c5d37f9 初步设计数据库,注册登录 6 months ago
readme.md 4e5c5d37f9 初步设计数据库,注册登录 6 months ago

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