mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
feat(fetch): implement abort (#10863)
This commit introduces fetch aborting via an AbortSignal.
This commit is contained in:
parent
3f9187c366
commit
1fb2e23a67
10 changed files with 325 additions and 63 deletions
|
@ -72,7 +72,7 @@
|
|||
headersList,
|
||||
body !== null ? new InnerBody(body) : null,
|
||||
);
|
||||
const request = fromInnerRequest(innerRequest, "immutable");
|
||||
const request = fromInnerRequest(innerRequest, null, "immutable");
|
||||
|
||||
const respondWith = createRespondWith(this, responseSenderRid);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue