the-tip-top-backend/node_modules/is-promise
2025-10-30 11:11:05 +00:00
..
index.d.ts Initial commit du frontend The Tip Top 2025-10-30 11:11:05 +00:00
index.js Initial commit du frontend The Tip Top 2025-10-30 11:11:05 +00:00
index.mjs Initial commit du frontend The Tip Top 2025-10-30 11:11:05 +00:00
LICENSE Initial commit du frontend The Tip Top 2025-10-30 11:11:05 +00:00
package.json Initial commit du frontend The Tip Top 2025-10-30 11:11:05 +00:00
readme.md Initial commit du frontend The Tip Top 2025-10-30 11:11:05 +00: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