Skip to content

Commit 69c0661

Browse files
rwblaireffigies
andauthored
Update src/files/tsv.ts
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 9544851 commit 69c0661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/files/tsv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function loadTSVGZ(
5959
): Promise<ColumnsMap> {
6060
const reader = openStream(file)
6161
.pipeThrough(new DecompressionStream('gzip'))
62-
.pipeThrough(createUTF8Stream(true))
62+
.pipeThrough(createUTF8Stream({ fatal: true }))
6363
.pipeThrough(new TextLineStream())
6464
.getReader()
6565

0 commit comments

Comments
 (0)