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`)
25 lines
756 B
JavaScript
25 lines
756 B
JavaScript
/* [MS-XLSB] 2.4.219 BrtBeginSst */
|
|
var parse_BrtBeginSst = function(data, length) {
|
|
return [data.read_shift(4), data.read_shift(4)];
|
|
};
|
|
|
|
/* [MS-XLSB] 2.1.7.45 Shared Strings */
|
|
var parse_sst_bin = function(data, opts) {
|
|
var s = [];
|
|
var pass = false;
|
|
recordhopper(data, function(val, R, RT) {
|
|
switch(R.n) {
|
|
case 'BrtBeginSst': s.Count = val[0]; s.Unique = val[1]; break;
|
|
case 'BrtSSTItem': s.push(val); break;
|
|
case 'BrtEndSst': return true;
|
|
/* TODO: produce a test case with a future record */
|
|
case 'BrtFRTBegin': pass = true; break;
|
|
case 'BrtFRTEnd': pass = false; break;
|
|
default: if(!pass || opts.WTF) throw new Error("Unexpected record " + RT + " " + R.n);
|
|
}
|
|
});
|
|
return s;
|
|
};
|
|
|
|
var write_sst_bin = function(sst, opts) { };
|