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 5c32a78 commit cd30d92Copy full SHA for cd30d92
src/schema/associations.ts
@@ -87,10 +87,7 @@ const associationLookup = {
87
}
88
},
89
coordsystem: async (file: BIDSFile, options: { maxRows: number }): Promise<{path: string, keys: string[]}> => {
90
- const keys = Object.keys(await loadJSON(file, options.maxRows)
91
- .catch((e) => {
92
- return []
93
- }))
+ const keys = Object.keys(await loadJSON(file).catch((e) => {}))
94
return {
95
path: file.path,
96
keys: keys,
0 commit comments