This repository has no description
Something went wrong. Try again.
123456789101112131415161718// React Native's AbortSignal implements `aborted`/`abort()` but not// `throwIfAborted()`.if ( typeof AbortSignal !== "undefined" && !AbortSignal.prototype.throwIfAborted) { AbortSignal.prototype.throwIfAborted = function throwIfAborted( this: AbortSignal, ) { if (!this.aborted) return; if (this.reason !== undefined) throw this.reason;
const error = new Error("signal is aborted without reason"); error.name = "AbortError"; throw error; };}