You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
4 years ago | |
|---|---|---|
| .. | ||
| index.d.ts | 4 years ago | |
| index.js | 4 years ago | |
| license | 4 years ago | |
| package.json | 4 years ago | |
| readme.md | 4 years ago | |
readme.md
neat-csv 
Fast CSV parser
Convenience wrapper around the super-fast streaming csv-parser module. Use that one if you want streamed parsing.
Install
$ npm install neat-csv
Usage
const neatCsv = require('neat-csv');
const csv = 'type,part\nunicorn,horn\nrainbow,pink';
(async () => {
console.log(await neatCsv(csv));
//=> [{type: 'unicorn', part: 'horn'}, {type: 'rainbow', part: 'pink'}]
})();
API
neatCsv(data, options?)
Returns a Promise<object[]> with the parsed CSV.
data
Type: string | Buffer | stream.Readable
CSV data to parse.
options
Type: object
See the csv-parser options.