frontend/.pnpm-store/v3/files/03/d6f3cf7071d0637539f63a2a8cf7bbf12b0d15aab0dbce9c6e77597bc2ea3b4bf41e89e5c6c9500b82e60d52888abe13dba10f96d0f1c8b577444b27f46146

19 lines
580 B
Plaintext

/** PURE_IMPORTS_START _Subscriber PURE_IMPORTS_END */
import { Subscriber } from '../Subscriber';
export function canReportError(observer) {
while (observer) {
var _a = observer, closed_1 = _a.closed, destination = _a.destination, isStopped = _a.isStopped;
if (closed_1 || isStopped) {
return false;
}
else if (destination && destination instanceof Subscriber) {
observer = destination;
}
else {
observer = null;
}
}
return true;
}
//# sourceMappingURL=canReportError.js.map