csv-streamify
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -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) { |
{ | ||
"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. :) |
10912
33086
152
101