Skip to content

Commit

Permalink
remove useless options in web streams
Browse files Browse the repository at this point in the history
  • Loading branch information
KhafraDev committed Feb 9, 2024
1 parent c4adfdd commit 9476188
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/fetch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,6 @@ function fetchFinale (fetchParams, response) {
controller.enqueue(value)
}
},
queuingStrategy: new ByteLengthQueuingStrategy({ highWaterMark: 16384 }),
type: 'bytes'
})

Expand Down Expand Up @@ -1929,7 +1928,6 @@ async function httpNetworkFetch (
// cancelAlgorithm set to cancelAlgorithm.
const stream = new ReadableStream(
{
highWaterMark: 16384,
async start (controller) {
fetchParams.controller.controller = controller
},
Expand All @@ -1939,8 +1937,7 @@ async function httpNetworkFetch (
async cancel (reason) {
await cancelAlgorithm(reason)
},
type: 'bytes',
queuingStrategy: new ByteLengthQueuingStrategy({ highWaterMark: 16384 })
type: 'bytes'
}
)

Expand Down

0 comments on commit 9476188

Please sign in to comment.