Is it possible, using javascript, to generate a TSV file on the browser side given that I have an array of headers that I want to put in the file?
For example, in my javascript I have:
var fields = ["field1", "field2", "field3", "field4", "field5"];
Can I create a TSV file which contains the following in the first line
field1 field2 field3 field4 field5
and save it as "fields.tsv"?