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

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

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);
```