Files
micro-service/node_modules/is-promise/index.mjs
how2ice 44cca8f122 init
2025-08-14 23:34:11 +09:00

4 lines
151 B
JavaScript
Executable File

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