forked from sheetjs/sheetjs
SheetJS
d15b81e0e9
- very basic XLSX / XLSM write support with roundtrip tests (XLSB stubs) - reorganized source tree - new XLSB range check ensures that A1 is not emitted for empty sheets - SSF table emitted in output (consistent with js-xls) - CLI supports writing Backwards-incompatible changes: o new Property aliases (see CORE_PROPS and EXT_PROPS) o FILETIME custom properties parsed as JS Dates o `xlsx2csv` -> `xlsx` (and `bin/xlsx{2csv,}.njs`)
20 lines
616 B
JavaScript
20 lines
616 B
JavaScript
function readSync(data, opts) {
|
|
var zip, d = data;
|
|
var o = opts||{};
|
|
if(!o.type) o.type = (typeof Buffer !== 'undefined' && data instanceof Buffer) ? "buffer" : "base64";
|
|
switch(o.type) {
|
|
case "base64": zip = new jszip(d, { base64:true }); break;
|
|
case "binary": zip = new jszip(d, { base64:false }); break;
|
|
case "buffer": zip = new jszip(d); break;
|
|
case "file": zip=new jszip(d=_fs.readFileSync(data)); break;
|
|
default: throw new Error("Unrecognized type " + o.type);
|
|
}
|
|
return parse_zip(zip, o);
|
|
}
|
|
|
|
function readFileSync(data, opts) {
|
|
var o = opts||{}; o.type = 'file';
|
|
return readSync(data, o);
|
|
}
|
|
|