We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ReadableStream
1 parent 8f8ca2d commit 699b8b0Copy full SHA for 699b8b0
packages/conjure-client/src/fetchBridge/blobReadableStreamAdapter.ts
@@ -31,6 +31,6 @@ export function blobToReadableStream(blobPromise: Promise<Blob>): ReadableStream
31
},
32
};
33
return typeof ReadableStream === "undefined"
34
- ? ((new PonyfilledReadableStream<Uint8Array>(underlyingSource) as unknown) as ReadableStream<Uint8Array>)
+ ? (new PonyfilledReadableStream<Uint8Array>(underlyingSource) as ReadableStream<Uint8Array>)
35
: new ReadableStream(underlyingSource);
36
}
0 commit comments