We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85736e7 commit 9f95cbcCopy full SHA for 9f95cbc
src/csv.ts
@@ -226,7 +226,8 @@ export async function csvDataFrame({
226
throw new Error(`Column not found: ${column}`);
227
}
228
const value = parsedRow.data[columnIndex]; // TODO(SL): we could convert to a type, here or in the cache
229
- return value ? { value } : undefined;
+ // return value ? { value } : undefined;
230
+ return { value: value ?? "" }; // return empty cells as empty strings, because we assume that all the row has been parsed
231
232
return undefined;
233
0 commit comments