xiejun
2023-08-24 4c32b9bf0ccba92eaa34ac5a376a5d3ceddb7484
1
2
3
4
5
6
/* 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);
}