22 lines
745 B
TypeScript
22 lines
745 B
TypeScript
/*! sheetjs (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
// @deno-types="https://cdn.sheetjs.com/xlsx-latest/package/types/index.d.ts"
|
|
import * as XLSX from 'https://cdn.sheetjs.com/xlsx-latest/package/xlsx.mjs';
|
|
import * as cptable from 'https://cdn.sheetjs.com/xlsx-latest/package/dist/cpexcel.full.mjs';
|
|
XLSX.set_cptable(cptable);
|
|
|
|
const filename = Deno.args[0];
|
|
if(!filename) {
|
|
console.error("usage: sheet2csv <filename> [sheetname]");
|
|
Deno.exit(1);
|
|
}
|
|
|
|
const workbook = XLSX.readFile(filename);
|
|
const sheetname = Deno.args[1] || workbook.SheetNames[0];
|
|
|
|
if(!workbook.Sheets[sheetname]) {
|
|
console.error(`error: workbook missing sheet ${sheetname}`);
|
|
Deno.exit(1);
|
|
}
|
|
|
|
console.log(XLSX.utils.sheet_to_csv(workbook.Sheets[sheetname]));
|