csv-headers
v1.0.0
Published
Returns an array containing headers of csv file
Downloads
683
Maintainers
Readme
csv-headers
Returns an array containing those elements which are present in first array and not in others
Installation
$ npm install csv-headers
Usage
var csvHeaders = require('csv-headers');
// Various options are:
// file : Mandatory, Absolute path of file : specified in quotes
// delimiter : Optional, Specify the delimiter between various fields, defaults to comma(,)
// encoding : Optional, Specify the file encoding, defaults to 'utf8'
var options = {
file : 'absoulte file path',
delimiter : ','
};
csvHeaders(options, function(err, headers) {
if(!err)
console.log(headers);
});
//=> ['title', 'salary', 'city', 'state']
License
MIT © Gaurav Luthra