diff --git a/app/scripts/util/data/csv-parser.js b/app/scripts/util/data/csv-parser.js index df870ea5..e553bc05 100644 --- a/app/scripts/util/data/csv-parser.js +++ b/app/scripts/util/data/csv-parser.js @@ -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) {