Simple TSV to JSON parse. Uses the first line as headers and returns an observable
npm install tsv-parserSimple TSV to JSON parse. Uses the first line as headers and returns an observable
js
import { parse } from tsv-parser
parse('http://fileLocation.tsv')
.subscribe(console.log)
`$3
You can easily create a data source from a google sheet. You hace to publish it and select tsv format. That action will return a url. Then you only..
`js
import { parse } from tsv-parser
parse(googleUrl.tsv)
.subscribe(console.log)
``