Merge pull request #1944 from R3dIO/master

Fixed issue with Csv parser parse (#1904)
This commit is contained in:
Kevin McCormack 2024-04-09 08:12:31 -04:00 committed by GitHub
commit c1fda05c77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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) {