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 9bb1bf8 commit 5ad1f2dCopy full SHA for 5ad1f2d
demo/esm/lib/parse_sync.ts
@@ -2,7 +2,7 @@ import assert from "assert";
2
import { parse } from "csv-parse/sync";
3
4
// Create the parser
5
-const records: [] = parse(["a:b:c\n", "1:2:3\n"].join(""), {
+const records: string[][] = parse(["a:b:c\n", "1:2:3\n"].join(""), {
6
delimiter: ":",
7
});
8
// Test that the parsed records matched what's expected
0 commit comments