frontend/.pnpm-store/v3/files/82/d9e87780283a3ceb2c798dc715318c8425433126ca175c7bd6f272754a9c9fad71759d8c6b6dd814937dd802147540a944043b3bc97a8c4ec236c5699b243f

4 lines
151 B
Plaintext

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