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

csv-string

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-string - npm Package Compare versions

Comparing version 2.0.2 to 2.0.3

10

lib/csv.js

@@ -136,4 +136,12 @@ 'use strict';

var rows = csv.File();
var ret = 0;
if (csv.pointer < input.length) {
ret = csv.pointer;
}
else {
rows.pop();
ret = csv.linePointer;
}
callback(rows);
return csv.pointer;
return ret;
}

@@ -140,0 +148,0 @@

4

package.json
{
"name": "csv-string",
"version": "2.0.2",
"version": "2.0.3",
"author": "Nicolas Thouvenin <nthouvenin@gmail.com>",

@@ -42,4 +42,4 @@ "contributors": [

"engines": {
"node": ">=0.6.0"
"node": ">=0.10.0"
}
}

@@ -160,7 +160,4 @@ # Javascript CSV Strings

stream.on('data', function (rows) {
rows.forEach(function (item) {
process.stdout.write(CSV.stringify(item));
}
);
stream.on('data', function (row) {
console.log(row);
}

@@ -167,0 +164,0 @@ )

Sorry, the diff of this file is not supported yet

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