incremental-csv-parser
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "incremental-csv-parser", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A simple, browser compatible, incremental CSV parser.", | ||
@@ -12,3 +12,3 @@ "main": "dist/cjs/index.js", | ||
"build:types": "tsc", | ||
"build:esm": "esbuild src/*.ts --outdir=dist/esm --format=esm --out-extension:.js=.mjs --sourcemap", | ||
"build:esm": "esbuild src/*.ts --outdir=dist/esm --format=esm --out-extension:.js=.mjs --sourcemap --target=es6", | ||
"build:cjs": "esbuild src/*.ts --outdir=dist/cjs --format=cjs --sourcemap", | ||
@@ -15,0 +15,0 @@ "test": "jest", |
@@ -55,3 +55,3 @@ # Incremental CSV Parser | ||
type ColumnName = 'a' | 'b' | 'c' | 'd'; | ||
const results: Record<ColumnName, string> = []; | ||
const results: Array<Record<ColumnName, string>> = []; | ||
@@ -58,0 +58,0 @@ const parser = new CSVParser<ColumName>((row) => { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34674
535