csv-parse
Advanced tools
Comparing version 4.0.0 to 4.0.1
# Changelog | ||
## Version 4.0.1 | ||
Fix: | ||
* relax_column_count: handle records with more columns | ||
## Version 4.0.0 | ||
@@ -5,0 +11,0 @@ |
@@ -628,3 +628,3 @@ "use strict"; | ||
for (var i in record) { | ||
if (columns[i].disabled) continue; | ||
if (columns[i] === undefined || columns[i].disabled) continue; | ||
obj[columns[i].name] = record[i]; | ||
@@ -631,0 +631,0 @@ } |
@@ -457,3 +457,3 @@ | ||
for(let i in record){ | ||
if(columns[i].disabled) continue | ||
if(columns[i] === undefined || columns[i].disabled) continue | ||
obj[columns[i].name] = record[i] | ||
@@ -460,0 +460,0 @@ } |
{ | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"name": "csv-parse", | ||
@@ -4,0 +4,0 @@ "description": "CSV parsing implementing the Node.js `stream.Transform` API", |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
91179
30
2111
0