ceseve
v1.2.1
Published
Convert arrays of data to CSV files
Downloads
34
Maintainers
Readme
ceseve
Convert array of data to CSV file
Install
$ npm install ceseve
Usage
const csv = require('ceseve');
const data = [
{ title: "foo", property: "bar" },
{ title: "foo_2", property: "bar_2" }
];
const csvDocument = csv(data);
// csv:
// title,property
// foo,bar
// foo_2,bar_2
You can specify options object:
const csvDocument = csv(data, {
separator: ';',
});
// csv:
// title;property
// foo;bar
// foo_2;bar_2
License
MIT © Carlos Azaustre