Fixed issue with Csv parser parse (#1904)

This commit is contained in:
Anuj Koli 2021-12-05 11:13:01 -05:00
parent dfc6201285
commit 3fff58353c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class CsvParser {
this.result = [];
this.next = this.handleBeforeValue;
this.index = 0;
while (this.next && this.index < this.csv.length) {
while (this.next && this.index <= this.csv.length) {
this.next = this.next(this);
}
if (this.lines.length <= 1) {