以TAB分割的文件到JSON转换器 TSV (Tab Separated Values) Json Convert Convert JSON to TSV const json = jsonfile.readFileSync(file); const tsvString = toTSV(json) Convert TSV to JSON const tsv = fs.readFileSync(file,'utf8'); const json = fromTSV(tsv)