()
| 440 | } |
| 441 | |
| 442 | _readChunk() { |
| 443 | const chunk = this._file.slice(this._offset, this._offset + this._chunkSize); |
| 444 | this._reader.readAsArrayBuffer(chunk); |
| 445 | } |
| 446 | |
| 447 | _onChunkRead(chunk) { |
| 448 | this._offset += chunk.byteLength; |
no outgoing calls
no test coverage detected