New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

csv-streamify

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-streamify - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

10

CHANGELOG.md

@@ -0,1 +1,11 @@

3.0.2 / 2015-11-25
==================
* fixes longstanding issue #14
3.0.1 / 2015-11-25
==================
* fixes #17
3.0.0 / 2015-11-01

@@ -2,0 +12,0 @@ ==================

@@ -102,2 +102,8 @@ 'use strict'

// are the last two chars quotes?
if (state._isQuoted && state._prev[0] === opts.quote && state._prev[1] === opts.quote) {
state._field += opts.quote
state._prev = []
}
// skip over quote

@@ -104,0 +110,0 @@ if (c === opts.quote) {

2

package.json
{
"name": "csv-streamify",
"version": "3.0.1",
"version": "3.0.2",
"description": "Streaming CSV Parser. Made entirely out of streams.",

@@ -5,0 +5,0 @@ "author": "Clemens Stolle",

@@ -6,2 +6,3 @@ csv-streamify [![Build Status](https://travis-ci.org/klaemo/csv-stream.png)](https://travis-ci.org/klaemo/csv-stream)

Parses csv files. Accepts options. No coffee script, no weird APIs. Just streams. Tested against [csv-spectrum](https://github.com/maxogden/csv-spectrum) and used in production.
It is also "fast enough" (around 60,000 rows per second, but that varies with data obviously).

@@ -94,2 +95,3 @@ Works in node `0.12`, `iojs` and `node 4.x`. Might work in node `0.10`, but is not tested in it.

- browser support
- better CLI

@@ -96,0 +98,0 @@ If you would like to contribute either of those just open an issue so we can discuss it further. :)

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