# node-tsv **Repository Path**: sparklex/node-tsv ## Basic Information - **Project Name**: node-tsv - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-29 - **Last Updated**: 2024-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 以TAB分割的文件到JSON转换器 # TSV (Tab Separated Values) Json Convert ## Convert JSON to TSV ```js const json = jsonfile.readFileSync(file); const tsvString = toTSV(json) ``` ## Convert TSV to JSON ```js const tsv = fs.readFileSync(file,'utf8'); const json = fromTSV(tsv) ```