binary-csv icon indicating copy to clipboard operation
binary-csv copied to clipboard

A fast, streaming CSV binary parser written in javascript

Results 3 binary-csv issues
Sort by recently updated
recently updated
newest added

you can do this with [`npm deprecate`](https://docs.npmjs.com/cli/deprecate): ``` npm deprecate binary-csv "use csv-parser instead, it has the same API but is faster" ```

Would be really nice if you could pass in an option to the parser to NOT try to escape quotes across multiple lines. Ran into this issue when the data...

At the moment AFAICT (!) I can't get the index of the current line. I'd love something like: ``` .on('data', function(line, index) {... } ``` This is useful in a...