Check if something is a promise
Why not is-promise
? That module checks for a thenable, not an ES2015 promise. This one is stricter.
You most likely don't need this. Just pass your value to Promise.resolve()
and let it handle it.
Can be useful if you need to create a fast path for a synchronous operation.
$ npm install p-is-promise
import isPromise from 'p-is-promise'; import Bluebird from 'bluebird'; isPromise(Promise.resolve('🦄')); //=> true isPromise(Bluebird.resolve('🦄')); //=> true isPromise('🦄'); //=> falseAbout
Check if something is a promise
Resources License Code of conduct Contributing Security policy Stars Watchers ForksYou can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4