forked from sheetjs/sheetjs
SheetJS
f9097d403b
- more structure in the theme parsing - cellDates option on parsing side creates date cells - cellDates option on writing side creates cells with type 'd' - cell types clarified, type 'str' phased out - README clarifications - more tests to ensure date consistency - more test cases for ODS
7 lines
330 B
JavaScript
7 lines
330 B
JavaScript
/* Helper function to call out to ODS parser */
|
|
function parse_ods(zip, opts) {
|
|
if(typeof module !== "undefined" && typeof require !== 'undefined' && typeof ODS === 'undefined') ODS = require('./od' + 's');
|
|
if(typeof ODS === 'undefined' || !ODS.parse_ods) throw new Error("Unsupported ODS");
|
|
return ODS.parse_ods(zip, opts);
|
|
}
|