Socket
Socket
Sign inDemoInstall

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.6.4 to 4.6.5

4

CHANGELOG.md

@@ -11,2 +11,6 @@

## Version 4.6.5
* context: column is null when cast force the context creation, fix #260
## Version 4.6.4

@@ -13,0 +17,0 @@

2

lib/es5/index.js

@@ -1131,3 +1131,3 @@ "use strict";

return {
column: isColumns === true ? columns.length >= this.state.record.length ? columns[this.state.record.length].name : null : this.state.record.length,
column: isColumns === true ? columns.length > this.state.record.length ? columns[this.state.record.length].name : null : this.state.record.length,
empty_lines: this.info.empty_lines,

@@ -1134,0 +1134,0 @@ header: columns === true,

@@ -906,3 +906,3 @@

column: isColumns === true ?
( columns.length >= this.state.record.length ?
( columns.length > this.state.record.length ?
columns[this.state.record.length].name :

@@ -909,0 +909,0 @@ null

{
"version": "4.6.4",
"version": "4.6.5",
"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