CSV JSON convert
This Javascript library helps converting CSV to JSON and JSON to CSV
Installation
npm install --save csv-json-convert
Usage
const converter = ; // Convert CSV string to JSON data array. converter; // Convert data array to CSV stringconverter; // Delimiter can be ';' or ',' or '\t' or '|' or '~'
Tests
npm test