Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

csv-parse

Package Overview
Dependencies
Maintainers
1
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-parse - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

samples/options.columns.array.js

6

CHANGELOG.md
# Changelog
## Version 4.0.1
Fix:
* relax_column_count: handle records with more columns
## Version 4.0.0

@@ -5,0 +11,0 @@

2

lib/es5/index.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc