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 9544851 commit 69c0661Copy full SHA for 69c0661
src/files/tsv.ts
@@ -59,7 +59,7 @@ export async function loadTSVGZ(
59
): Promise<ColumnsMap> {
60
const reader = openStream(file)
61
.pipeThrough(new DecompressionStream('gzip'))
62
- .pipeThrough(createUTF8Stream(true))
+ .pipeThrough(createUTF8Stream({ fatal: true }))
63
.pipeThrough(new TextLineStream())
64
.getReader()
65
0 commit comments