forked from sheetjs/sheetjs
12 lines
604 B
JavaScript
12 lines
604 B
JavaScript
|
/* Helper functions to call out to ODS */
|
||
|
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);
|
||
|
}
|
||
|
function write_ods(wb, opts) {
|
||
|
if(typeof module !== "undefined" && typeof require !== 'undefined' && typeof ODS === 'undefined') ODS = require('./od' + 's');
|
||
|
if(typeof ODS === 'undefined' || !ODS.write_ods) throw new Error("Unsupported ODS");
|
||
|
return ODS.write_ods(wb, opts);
|
||
|
}
|