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.
1 parent efda4bf commit cfc3111Copy full SHA for cfc3111
lib/sources/WebStreamFileSource.ts
@@ -39,8 +39,6 @@ export class WebStreamFileSource implements FileSource {
39
40
private _done = false
41
42
- private _stream: ReadableStream
43
-
44
// Setting the size to null indicates that we have no calculation available
45
// for how much data this stream will emit requiring the user to specify
46
// it manually (see the `uploadSize` option).
@@ -52,7 +50,6 @@ export class WebStreamFileSource implements FileSource {
52
50
'Readable stream is already locked to reader. tus-js-client cannot obtain a new reader.',
53
51
)
54
}
55
- this._stream = stream
56
this._reader = stream.getReader()
57
58
0 commit comments