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 085f8ae commit 9544851Copy full SHA for 9544851
src/files/tsv.ts
@@ -78,7 +78,7 @@ export async function loadTSVGZ(
78
79
async function _loadTSV(file: BIDSFile, maxRows: number = -1): Promise<ColumnsMap> {
80
const reader = openStream(file)
81
- .pipeThrough(createUTF8Stream(true))
+ .pipeThrough(createUTF8Stream({ fatal: true }))
82
.pipeThrough(new TextLineStream())
83
.getReader()
84
0 commit comments