csv-parser
Advanced tools
Comparing version 1.0.1 to 1.1.0
@@ -121,2 +121,9 @@ var stream = require('stream') | ||
this._Row = new Function('return function Row(cells) {\n'+props+'}')() | ||
if (Object.defineProperty) { | ||
Object.defineProperty(this._Row.prototype, 'headers', { | ||
enumerable: false, | ||
value: this.headers | ||
}) | ||
} else this._Row.prototype.headers = this.headers | ||
} | ||
@@ -123,0 +130,0 @@ |
{ | ||
"name": "csv-parser", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"description": "Streaming csv parser inspired by binary-csv that aims to be faster than everyone else", | ||
@@ -5,0 +5,0 @@ "repository": "mafintosh/csv-parser", |
11723
332