https://github.com/mikeludemann/json2tsv
JSON to TSV convert method
https://github.com/mikeludemann/json2tsv
converter json tsv
Last synced: 3 months ago
JSON representation
JSON to TSV convert method
- Host: GitHub
- URL: https://github.com/mikeludemann/json2tsv
- Owner: mikeludemann
- License: mit
- Created: 2019-08-13T12:58:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-13T13:12:19.000Z (almost 7 years ago)
- Last Synced: 2025-03-28T02:48:37.705Z (over 1 year ago)
- Topics: converter, json, tsv
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# json2tsv
JSON to TSV converter
## Example
```
var data = [{
key: '1',
name: 'John Doe',
age: 32
}, {
key: '2',
name: 'Jane Doe',
age: 35
}];
json2tsv(data);
```