1.2.6 • Published 6 years ago
csv-processor v1.2.6
csv-processor
Hello! csv-processor is a package, it can help easy handle data and would it to be CSV file 🙌!
Get Started
Install
You can install this csv-processor from npm.
npm install csv-processor
Usage
import csv from 'csv-processor';
// Initial data
const column = ['number', 'name'];
const data = [[1, 'Luka'], [2, 'Larry']];
// Generate and download CSV file!
csv.generaterCsv('fileName', column, data);