Bolshakova Anna ab21a11190 lab | 3 weken geleden | |
---|---|---|
.. | ||
node_modules | 3 weken geleden | |
index.js | 3 weken geleden | |
license | 3 weken geleden | |
package.json | 3 weken geleden | |
readme.md | 3 weken geleden |
Fast CSV parser
Convenience wrapper around the super-fast streaming csv-parser
module. Use that one if you want streamed parsing.
$ npm install --save neat-csv
const neatCsv = require('neat-csv');
const csv = 'type,part\nunicorn,horn\nrainbow,pink';
neatCsv(csv).then(data => {
console.log(data);
//=> [{type: 'unicorn', part: 'horn'}, {type: 'rainbow', part: 'pink'}]
});
Returns a promise for an array with the parsed CSV.
Type: buffer
, string
, stream
CSV to parse.
Type: object
See the csv-parser
options.
MIT © Sindre Sorhus