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.0 to 4.6.1

5

CHANGELOG.md

@@ -9,3 +9,8 @@

* promise: new API module
* errors: finish normalisation of all errors
## Version 4.6.1
* src: set const in for loop
## Version 4.6.0

@@ -12,0 +17,0 @@

2

lib/es5/index.js

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

for (var _i2 = 0, _contexts = contexts; _i2 < _contexts.length; _i2++) {
context = _contexts[_i2];
var context = _contexts[_i2];

@@ -1224,0 +1224,0 @@ for (var key in context) {

@@ -955,4 +955,4 @@

this.code = code
for(context of contexts){
for(let key in context){
for(const context of contexts){
for(const key in context){
const value = Buffer.isBuffer(context[key]) ? context[key].toString() : context[key]

@@ -959,0 +959,0 @@ this[key] = JSON.parse(JSON.stringify(value))

{
"version": "4.6.0",
"version": "4.6.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