1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-03 12:50:04 +02:00
Files
gitlit/node_modules/is-promise
2018-10-09 09:51:34 +02:00
..
2018-06-03 13:57:23 +02:00
2018-06-03 13:57:23 +02:00
2018-06-03 13:57:23 +02:00
2018-06-03 13:57:23 +02:00
2018-10-09 09:51:34 +02:00
2018-06-03 13:57:23 +02: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

var isPromise = require('is-promise');

isPromise({then:function () {...}});//=>true
isPromise(null);//=>false
isPromise({});//=>false
isPromise({then: true})//=>false

License

MIT