Skip to content

Commit f6afd8d

Browse files
committed
feat: added any because I couldn't get the typescript compiler to understand that skipEmptyLines is indeed an option
1 parent f3f59e5 commit f6afd8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/danfojs-base/io/node/io.csv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const $readCSV = async (filePath: string, options?: CsvInputOptionsNode): Promis
6060
}
6161

6262
const dataStream = request.get(filePath);
63-
const parseStream: any = Papa.parse(Papa.NODE_STREAM_INPUT, optionsWithDefaults);
63+
const parseStream: any = Papa.parse(Papa.NODE_STREAM_INPUT, optionsWithDefaults as any);
6464
dataStream.pipe(parseStream);
6565

6666
const data: any = [];

0 commit comments

Comments
 (0)