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
- Host: GitHub
- URL: https://github.com/mikeludemann/csv2json
- Owner: mikeludemann
- License: mit
- Created: 2019-08-13T12:13:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-13T12:46:21.000Z (almost 7 years ago)
- Last Synced: 2025-03-28T02:49:06.011Z (about 1 year ago)
- Topics: converter, csv, json
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```