yuxc
2023-08-24 fbe6037a64b8d578de6285794e08927fe5bf2f88
1
2
3
4
5
6
7
8
/* copied from js-xls (C) SheetJS Apache2 license */
function xlml_normalize(d) {
    if(has_buf && Buffer.isBuffer(d)) return d.toString('utf8');
    if(typeof d === 'string') return d;
    throw "badf";
}
 
var xlmlregex = /<(\/?)([a-z0-9]*:|)([\w-]+)[^>]*>/mg;