cisv 0.0.23 → 0.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -112,8 +112,7 @@ async function runAllBenchmarks() {
112
112
  const parser = new cisvParser();
113
113
  parser.write(fileBuffer);
114
114
  parser.end();
115
- const rows = parser.getRows();
116
- const specificRow = rows[TARGET_ROW_INDEX];
115
+ const specificRow = parser[TARGET_ROW_INDEX];
117
116
  })
118
117
  .add('csv-parse (sync)', () => {
119
118
  const rows = csvParseSync(fileBuffer);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cisv",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "The fastest csv parser of the multiverse",
5
5
  "author": "sanix<s4nixd@gmail.com>",
6
6
  "main": "./build/Release/cisv.node",