forked from sheetjs/sheetjs
SheetJS
86d6a093f0
- README and example cleanup - basic XLSB and ODS write support - flow typecheck for ODS file Note: xlsx.js flow fails: https://github.com/facebook/flow/issues/380 - exposed jszip compression (fixes #220, closes #284) README issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #202 | @sao93859 | closes #202 | | #211 | @alexanderchan | closes #211 corrected examples | | #327 | @cskaandorp | changed saveAs example to match write tests | | #424 | @dskrvk | added note about s2roa h/t @LeonardoPatignio | | #496 | @jimmywarting | closes #496 adapted rABS examples with rAAS | ODS file format issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #148 | @user4815162342| closes #148 h/t @ziacik | | #166 | @paulproteus | closes #166 rudimentary ODS write support | | #177 | @ziacik | closes #177 | | #179 | @ziacik | closes #179 use JSON when available | | #317 | @ziacik | closes #317 | | #328 | @think01 | closes #328 | | #383 | @mdamt | closes #383 duplicate cells should be copied | | #430 | @RB-Lab | closes #430 | | #546 | @lgodard | closes #546 thanks to other changes |
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
function fix_opts_func(defaults) {
|
|
return function fix_opts(opts) {
|
|
for(var i = 0; i != defaults.length; ++i) {
|
|
var d = defaults[i];
|
|
if(opts[d[0]] === undefined) opts[d[0]] = d[1];
|
|
if(d[2] === 'n') opts[d[0]] = Number(opts[d[0]]);
|
|
}
|
|
};
|
|
}
|
|
|
|
var fix_read_opts = fix_opts_func([
|
|
['cellNF', false], /* emit cell number format string as .z */
|
|
['cellHTML', true], /* emit html string as .h */
|
|
['cellFormula', true], /* emit formulae as .f */
|
|
['cellStyles', false], /* emits style/theme as .s */
|
|
['cellDates', false], /* emit date cells with type `d` */
|
|
|
|
['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, cfb) */
|
|
['bookVBA', false], /* include vba raw data (vbaraw) */
|
|
|
|
['password',''], /* password */
|
|
['WTF', false] /* WTF mode (throws errors) */
|
|
]);
|
|
|
|
|
|
var fix_write_opts = fix_opts_func([
|
|
['cellDates', false], /* write date cells with type `d` */
|
|
|
|
['bookSST', false], /* Generate Shared String Table */
|
|
|
|
['bookType', 'xlsx'], /* Type of workbook (xlsx/m/b) */
|
|
|
|
['compression', false], /* Use file compression */
|
|
|
|
['WTF', false] /* WTF mode (throws errors) */
|
|
]);
|