1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-02 20:37:05 +01:00
2020-11-17 21:44:32 +01:00
..
2020-11-17 21:44:32 +01:00
2020-11-17 21:44:32 +01:00
2020-11-17 21:44:32 +01:00
2020-11-17 21:44:32 +01:00
2020-11-17 21:44:32 +01:00

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