Releases: C2FO/fast-csv
Releases · C2FO/fast-csv
v0.4.3
v0.4.2
v0.4.1
- Fixed race condition that occured if you called pause during a flush.
v0.4.0
v0.3.0
- You can now specify
objectMode
when parsing a csv which will causedata
events to have an object emitted. - You can now pipe directly to the stream returned from
createWriteStream
- You can now transform csvs by piping output from parsing into a formatter.
v0.2.2
- Fixed issue with having line breaks containing
\r\n
v0.2.1
- Fixed issue with \r line break in parser
v0.2.0
- Added multiline value support
- Updated escaping logic
- More performance enhancements
- More robusts test cases
- Removed support for having two quote types instead it just supports a single quote and escape sequence.
v0.1.2
- Fixed issue with formatter handling undefined or null values.
- Changed formatter not not include a new line at the end of a CSV.
- Added
pause
andresume
functionality toParserStream
v0.1.1
- Added trim, ltrim, and rtrim to parsing options