forked from sheetjs/sheetjs
SheetJS
33fbc389c5
- option bookFiles controls whether zip files and keys are written to object *** Default has been flipped from "true" to "false" - updated SSF to 0.5.8 - updated test_files to 20140216 (tests also look at 2013 XLSB) - added dist files (make dist)
18 lines
672 B
JavaScript
18 lines
672 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 .h */
|
|
|
|
['sheetStubs', false], /* emit empty cells */
|
|
|
|
['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]; });
|
|
}
|