Files
Lab4/33/node_modules/is-promise/index.mjs
MishaBagger b6c10cc93f MACHIN
2023-10-25 09:15:21 +03:00

4 lines
151 B
JavaScript

export default function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}