We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AbortSignal
initialOptions
There would be better to allow use also original Abort Signal (if provided):
use-x/src/use-fetch/use-fetch.solution.ts
Lines 95 to 96 in ca70f15
const requestInit = (requestOptions || {}); requestInit.signal = requestInit.signal ? mergeSignals(requestInit.signal, abortController.current.signal) : abortController.current.signal;
…using https://www.npmjs.com/package/abort-utils
The text was updated successfully, but these errors were encountered:
Thanks! I will add this and a test soon. Will use the new built in AbortSignal.any() - https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/any_static
AbortSignal.any()
Sorry, something went wrong.
No branches or pull requests
There would be better to allow use also original Abort Signal (if provided):
use-x/src/use-fetch/use-fetch.solution.ts
Lines 95 to 96 in ca70f15
…using https://www.npmjs.com/package/abort-utils
The text was updated successfully, but these errors were encountered: