1.0.1 • Published 11 months ago
node-tsv v1.0.1
以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)