fullstackopen-notes/parts/3/phonebookBackend/node_modules/is-promise
2025-05-31 22:51:30 +02:00
..
index.d.ts completed exercise 3.1 2025-05-31 22:51:30 +02:00
index.js completed exercise 3.1 2025-05-31 22:51:30 +02:00
index.mjs completed exercise 3.1 2025-05-31 22:51:30 +02:00
LICENSE completed exercise 3.1 2025-05-31 22:51:30 +02:00
package.json completed exercise 3.1 2025-05-31 22:51:30 +02:00
readme.md completed exercise 3.1 2025-05-31 22:51:30 +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

import isPromise from 'is-promise';

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

License

MIT