ceseve

Convert arrays of data to CSV files

Usage no npm install needed!

<script type="module">
  import ceseve from 'https://cdn.skypack.dev/ceseve';
</script>

README

Build Status install size

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