Lobashov_Ivan_PIBD-21_IP/Lab2/node_modules/is-promise/index.mjs

4 lines
151 B
JavaScript
Raw Normal View History

2024-01-10 22:39:31 +04:00
export default function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}