Socket
Socket
Sign inDemoInstall

csv-parse

Package Overview
Dependencies
0
Maintainers
1
Versions
141
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

lib/sync.js

4

lib/index.js

@@ -152,3 +152,3 @@ // Generated by CoffeeScript 1.10.0

Parser.prototype._transform = function(chunk, encoding, callback) {
var err, error;
var err;
if (chunk instanceof Buffer) {

@@ -167,3 +167,3 @@ chunk = this.decoder.write(chunk);

Parser.prototype._flush = function(callback) {
var err, error;
var err;
try {

@@ -170,0 +170,0 @@ this.__write(this.decoder.end(), true);

{
"version": "1.0.1",
"version": "1.0.2",
"name": "csv-parse",

@@ -4,0 +4,0 @@ "description": "CSV parsing implementing the Node.js `stream.Transform` API",

@@ -13,3 +13,4 @@

parser.on('readable', function(){
while(record = parser.read()){
var record;
while (record = parser.read()) {
output.push(record);

@@ -16,0 +17,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc