Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v4.1.0

* [ADDED] A new `headers` event that will be emitted when headers are parsed [#321] (https://github.com/C2FO/fast-csv/issues/321)

# v4.0.3

* [FIXED] Issue where invalid rows were not accounted for when skipRows was set [#317](https://github.com/C2FO/fast-csv/issues/317)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ There are three packages published from this repo.
Exposes both formatting and parsing methods in a single package, use this if you need to parse and format files.

* [Docs](./packages/fast-csv/README.md)
* [Benchmarks](./examples/benchmark/README.md)
* [JavaScript Examples](./examples/fast-csv-js/README.md)
* [TypeScript Examples](./examples/fast-csv-ts/README.md)

Expand Down
14 changes: 14 additions & 0 deletions examples/benchmark/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Benchmark Results

|Type|Row Count|No. Runs|Avg|
|-|-|-|-|
|nonquoted|1000|5|15ms|
|nonquoted|10000|5|62ms|
|nonquoted|20000|5|102.2ms|
|nonquoted|50000|5|259ms|
|nonquoted|100000|5|513ms|
|quoted|1000|5|10.8ms|
|quoted|10000|5|70.8ms|
|quoted|20000|5|144.2ms|
|quoted|50000|5|356.6ms|
|quoted|100000|5|712.2ms|
Loading