parse-csv
parse-csv copied to clipboard
CSV parser for node.js
Please see https://github.com/jonschlinkert/parse-csv/issues/6. @jonschlinkert - Please have a look.
Adds support for better handling malformed csv data with a *ignoreMissingColumns* option. If true, missing columns will be populated with empty strings rather than throwing an exception.
I'm getting a broken thread from the following line: * https://github.com/jonschlinkert/parse-csv/blob/fc492d63e6ae80539689b3a0d663ca78aea819a3/lib/parser.js#L144 ``` TypeError: this.log is not a function at Parser.parse (node_modules/parse-csv/lib/parser.js:144:12) at csv (node_modules/parse-csv/index.js:61:25) at Function.module.exports.toJSON (node_modules/parse-csv/index.js:94:25) at Object.lambda.parseCsv.data [as...
Hi Jon, This PR allows user to set custom delimiter, 'tab' value is still available. My MS Excel (15.33 for Mac) exports csv files with ';' as a delimiter by...
see https://github.com/jonschlinkert/parse-csv/issues/3
some refs: - http://tools.ietf.org/html/rfc4180 - https://github.com/parsecsv/csv-spec I just found them before few weeks, while playing with LimonJS. I think it would be better to follow "most common". just 2c