Fast Csv Versions Save

CSV parser and formatter for node

v3.3.0

4 years ago
  • [FIXED] First row of CSV is removed when headers array is provided #252

v3.2.0

4 years ago
  • [FIXED] Invalid row index doesn't reflect original row count #130 #266 - @chrwnsk

v3.0.2

4 years ago
  • Update lodash to address #260

v2.3.0

7 years ago
  • Writing object ends up with function definitions #158

v2.2.0

7 years ago
  • Handle split CRLF #156 - @alexeits

v2.0.1

7 years ago
  • Fix for last column empty when line end with a delimiter.

v2.0.0

8 years ago

Fast CSV will now handles the last column being empty.

v1.1.0

8 years ago
  • Fix for when chunk returned by transform to the parser ends with a space
  • Functionality to give a reason when invalid data
  • Fix problem with utf8 encoded streams that have multi-byte characters
  • Allow passing sparse array of headers

v1.0.0

8 years ago
  • Node 4 and 5 support.
  • Deprecating the record event.

v0.6.0

9 years ago
  • Removed try catch from emit to allow bubbling up of errors to process, if one is thrown #93
    • This also fixed issue #92 where a loop was entered when this.emit("error") was called.
  • Added new tests