initial commit.

This commit is contained in:
2022-06-06 02:04:50 -04:00
commit 62de970149
1557 changed files with 256441 additions and 0 deletions

5
node_modules/csvtojson/v2/lineToJson.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { Converter } from "./Converter";
export default function (csvRows: string[][], conv: Converter): JSONResult[];
export declare type JSONResult = {
[key: string]: any;
};