4 lines
151 B
JavaScript
Raw Normal View History

2025-04-09 20:33:41 +09:00
export default function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}