(file)
| 151 | } |
| 152 | |
| 153 | async _readFullFile(file) { |
| 154 | const text = await file.text(); |
| 155 | this._handleFileChunk(text); |
| 156 | } |
| 157 | |
| 158 | async _streamFile(file, decoder) { |
| 159 | const stream = file.stream().pipeThrough(new decoder()); |
no test coverage detected