We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ba2788 commit 6b2df10Copy full SHA for 6b2df10
2 files changed
libs/core/Converter.js
@@ -259,7 +259,7 @@ Converter.prototype._line = function(line) {
259
this.emit("error", "row_exceed", this._csvLineBuffer);
260
}
261
if (!utils.isToogleQuote(this._csvLineBuffer, this.param.quote)) { //if a complete record is in buffer.push to result
262
- data = this._csvLineBuffer;
+ var data = this._csvLineBuffer;
263
this._csvLineBuffer = '';
264
lines.push(data);
265
} else { //if the record in buffer is not a complete record (quote does not close). wait next line
package.json
@@ -18,7 +18,7 @@
18
"email": "t3dodson@gmail.com"
19
20
],
21
- "version": "0.5.6",
+ "version": "0.5.7",
22
"keywords": [
23
"csv",
24
"csvtojson",
0 commit comments