sheetjs/packages/dta/bin/dta2csv.njs

19 lines
707 B
Plaintext
Raw Normal View History

2023-11-13 11:03:35 +00:00
#!/usr/bin/env node
/* eslint-env node, es6 */
const DTA = require("../");
const XLSX = (() => {
try {
const XLSX = require("xlsx");
DTA.set_utils(XLSX.utils);
return XLSX;
} catch(e) {
throw new Error("Must install the SheetJS file processing library! See https://docs.sheetjs.com/docs/getting-started/installation/nodejs for more details");
}
})();
const fs = require("fs");
const buf = fs.readFileSync(process.argv[2]);
const wb = DTA.parse(buf);
// translate stub cells to single blanks
2023-12-05 08:19:42 +00:00
//wb.Sheets[wb.SheetNames[0]]["!data"].forEach(row => row.forEach(cell => {if(cell.t == "z") {cell.t = "s"; cell.v = " ";}}));
2023-11-13 11:03:35 +00:00
console.log(XLSX.utils.sheet_to_csv(wb.Sheets[wb.SheetNames[0]]));