csv-parser-2

1.0.1 • Public • Published

csv-parser-2 Build Status

based on rfc4180, extended with popular needs

  • automatic delimiter detection
  • encoding detection and utf8 conversion
  • removing empty rows
  • trimming cells
var parser = require('csv-parser-2');
 
var data = parser(new Buffer('a,b\n1,2'));
console.log(data.rows); // [['a', 'b'],['1', '2']];

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    1
  • 1.0.0
    0

Package Sidebar

Install

npm i csv-parser-2

Weekly Downloads

1

Version

1.0.1

License

ISC

Last publish

Collaborators

  • bubenshchykov