ceseve

1.2.1 • Public • Published

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

Package Sidebar

Install

npm i ceseve

Weekly Downloads

13

Version

1.2.1

License

MIT

Unpacked Size

5.94 kB

Total Files

10

Last publish

Collaborators

  • carlosazaustre