dangsn
2023-08-24 260d5e5294da879f7fcf7f93e7379f8b990a0ce7
1
2
3
4
5
6
7
8
9
10
var get_utils = function() {
    if(typeof XLSX !== 'undefined') return XLSX.utils;
    if(typeof module !== "undefined" && typeof require !== 'undefined') try {
        return require('../' + 'xlsx').utils;
    } catch(e) {
        try { return require('./' + 'xlsx').utils; }
        catch(ee) { return require('xl' + 'sx').utils; }
    }
    throw new Error("Cannot find XLSX utils");
};