forked from sheetjs/sheetjs
SheetJS
ad20bf9b83
Most writers write sheets to xl/worksheets/sheetN.xml (where N is 1-indexed) Numbers for iOS apparently writes to xl/worksheets/sheet.xml (for first sheet) xl/worksheets/sheetN.xml (N>1, 0-indexed -- sheet1.xml corresponds to 2nd sheet) The right thing to do is to dig into workbook rels, but that's for another day
21 lines
789 B
JavaScript
21 lines
789 B
JavaScript
function fixopts(opts) {
|
|
var defaults = [
|
|
['cellNF', false], /* emit cell number format string as .z */
|
|
['cellHTML', true], /* emit html string as .h */
|
|
['cellFormula', true], /* emit formulae as .f */
|
|
|
|
['sheetStubs', false], /* emit empty cells */
|
|
['sheetRows', 0, 'n'], /* read n rows (0 = read all rows) */
|
|
['bookDeps', false], /* parse calculation chains */
|
|
['bookSheets', false], /* only try to get sheet names (no Sheets) */
|
|
['bookProps', false], /* only try to get properties (no Sheets) */
|
|
['bookFiles', false], /* include raw file structure (keys, files) */
|
|
|
|
['WTF', false] /* WTF mode (throws errors) */
|
|
];
|
|
defaults.forEach(function(d) {
|
|
if(typeof opts[d[0]] === 'undefined') opts[d[0]] = d[1];
|
|
if(d[2] === 'n') opts[d[0]] = Number(opts[d[0]]);
|
|
});
|
|
}
|