node-csvtojson
node-csvtojson copied to clipboard
Blazing fast and Comprehensive CSV Parser for Node.JS / Browser / Command Line.
There was the call `const csv = csvString.toString();` which enforces the input of `fromString()` to be a string. But the variable `csv` was never used which is why I got...
Hi Keyang! Thanks so much for such great lib as csvtojson! When we are picking a file in browser with `` we can use `readAsArrayBuffer()` to get the contents efficiently...
How can I raise an error when a column's type does not match? I am using the `checkType` flag, but when I pass a value like `5/34` to `number` type...
Not sure if this is already a feature but it would be nice to have a way to parse a csv transposed/flipped. I have a csv file that has the...
I've been using this change for debugging and I think it should come with the library.
Various errors are printed to stdout instead of stderr. For instance: https://github.com/Keyang/node-csvtojson/blob/8e444d154bb688d61b3552d3d55b7fc4a9d08a5a/bin/csvtojson.js#L100 **Impact:** When piping the output of the `csvtojson` to a file, these errors are also pushed to the...
Hey guys, I have defined a set of colParser functions that do complex data maps on specific columns and I need to be able to raise an error indicating for...
While trying to handle large CSV file I face "CSV Parse Error: Error: unclosed_quote." error after certain records being processed successfully. Is there a solution already available with this package...
I'm starting to write a custom parser to receive a boolean value as text, allowing only 4 possible strings. What should I do to comply with the designed module behavior...