Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xwartz/json-csv-convertor
json2csv && csv2json
https://github.com/xwartz/json-csv-convertor
Last synced: about 2 months ago
JSON representation
json2csv && csv2json
- Host: GitHub
- URL: https://github.com/xwartz/json-csv-convertor
- Owner: xwartz
- Created: 2014-12-01T14:02:12.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-05T13:47:28.000Z (about 10 years ago)
- Last Synced: 2024-10-14T08:10:50.903Z (3 months ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
json-csv-convertor
==================JSON:
```json
{
"a": "abcd",
"b": "abcd",
"c": "abcd",
"d": "abcd"
}
```convert
CSV:
```csv
a,abcd
b,abcd
c,abcd
d,abcd
```