frontend/.pnpm-store/v3/files/5c/83fbf27170ba2deaa201115967beff59a4553a86053d9b3e3e99ea1a4b343f88d7c51357cee1a761e09d88a51150469f242b876ed1d15f8d7f35b354ed047b

4 lines
171 B
Plaintext

export function isPromise(value) {
return !!value && typeof value.subscribe !== 'function' && typeof value.then === 'function';
}
//# sourceMappingURL=isPromise.js.map