ken_nogi/NodeJS/postfixconsole_org2/node_modules/is-promise/index.mjs
Kenichiro NOGI 88a402ce0f up
2026-07-10 18:13:30 +09:00

4 lines
151 B
JavaScript

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