Socket
Socket
Sign inDemoInstall

csv

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv - npm Package Compare versions

Comparing version 0.3.5 to 0.3.6

4

lib/stringifier.js

@@ -10,3 +10,4 @@ // Generated by CoffeeScript 1.6.3

var Stringifier;
var Stringifier,
__hasProp = {}.hasOwnProperty;

@@ -83,2 +84,3 @@ Stringifier = function(csv) {

for (column in line) {
if (!__hasProp.call(line, column)) continue;
_line.push(line[column]);

@@ -85,0 +87,0 @@ }

{
"name": "csv",
"version": "0.3.5",
"version": "0.3.6",
"description": "CSV parser with simple api, full of options and tested against large datasets.",
"homepage": "http://www.adaltas.com/projects/node-csv/",
"bugs": "https://github.com/wdavidw/node-csv/issues",
"author": "David Worms <david@adaltas.com> (hhttp://www.adaltas.com)",
"author": "David Worms <david@adaltas.com> (http://www.adaltas.com)",
"contributors": [

@@ -9,0 +9,0 @@ "David Worms <david@adaltas.com> (http://www.adaltas.com)",

@@ -51,3 +51,3 @@ [![Build Status](https://secure.travis-ci.org/wdavidw/node-csv-parser.png)](http://travis-ci.org/wdavidw/node-csv-parser)

.from.path(__dirname+'/sample.in', { delimiter: ',', escape: '"' })
.to.stream(fs.createReadStream(__dirname+'/sample.out'))
.to.stream(fs.createWriteStream(__dirname+'/sample.out'))
.transform( function(row){

@@ -54,0 +54,0 @@ row.unshift(row.pop());

@@ -8,4 +8,4 @@

csv()
.from.stream(fs.createReadStream(__dirname+'/sample.in'))
.to.path(__dirname+'/sample.out')
.from.path(__dirname+'/sample.in', { delimiter: ',', escape: '"' })
.to.stream(fs.createWriteStream(__dirname+'/sample.out'))
.transform( function(row){

@@ -12,0 +12,0 @@ row.unshift(row.pop());

Sorry, the diff of this file is not supported yet

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