mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
fix(cli/body): Maximum call stack size exceeded error (#6537)
This commit is contained in:
parent
1c12098e4a
commit
89ebe2079b
2 changed files with 25 additions and 2 deletions
|
@ -35,7 +35,7 @@ function validateBodyType(owner: Body, bodySource: BodyInit | null): boolean {
|
|||
);
|
||||
}
|
||||
|
||||
function concatenate(...arrays: Uint8Array[]): ArrayBuffer {
|
||||
function concatenate(arrays: Uint8Array[]): ArrayBuffer {
|
||||
let totalLength = 0;
|
||||
for (const arr of arrays) {
|
||||
totalLength += arr.length;
|
||||
|
@ -73,7 +73,7 @@ async function bufferFromStream(
|
|||
}
|
||||
}
|
||||
|
||||
return concatenate(...parts);
|
||||
return concatenate(parts);
|
||||
}
|
||||
|
||||
export const BodyUsedError =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue