Bolshakova Anna ab21a11190 lab 3 tuần trước cách đây
..
node_modules ab21a11190 lab 3 tuần trước cách đây
index.js ab21a11190 lab 3 tuần trước cách đây
license ab21a11190 lab 3 tuần trước cách đây
package.json ab21a11190 lab 3 tuần trước cách đây
readme.md ab21a11190 lab 3 tuần trước cách đây

readme.md

neat-csv Build Status

Fast CSV parser

Convenience wrapper around the super-fast streaming csv-parser module. Use that one if you want streamed parsing.

Install

$ npm install --save neat-csv

Usage

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'}]
});

API

neatCsv(input, [options])

Returns a promise for an array with the parsed CSV.

input

Type: buffer, string, stream

CSV to parse.

options

Type: object

See the csv-parser options.

License

MIT © Sindre Sorhus