An open API service indexing awesome lists of open source software.

https://github.com/mikeludemann/csv2json

CSV to JSON convert method
https://github.com/mikeludemann/csv2json

converter csv json

Last synced: about 2 months ago
JSON representation

CSV to JSON convert method

Awesome Lists containing this project

README

          

# csv2json

CSV to JSON converter

## Example

```
var CSV = [
'1,val1,val2,val3,val4',
'2,val1,val2,val3,val4',
'3,val1,val2,val3,val4'
].join('\n');

csv2json(csv);

csvFileToJSON(test.csv);
```