2014-10-10 02:22:38 +00:00
|
|
|
/* copied from js-xls (C) SheetJS Apache2 license */
|
|
|
|
function xlml_normalize(d) {
|
2017-02-03 20:50:45 +00:00
|
|
|
if(has_buf &&/*::typeof Buffer !== "undefined" && d != null &&*/ Buffer.isBuffer(d)) return d.toString('utf8');
|
2014-10-10 02:22:38 +00:00
|
|
|
if(typeof d === 'string') return d;
|
|
|
|
throw "badf";
|
|
|
|
}
|
|
|
|
|
2017-02-22 06:57:59 +00:00
|
|
|
/* UOS uses CJK in tags, original regex /<(\/?)([a-z0-9]*:|)([\w-]+)[^>]*>/ */
|
|
|
|
var xlmlregex = /<(\/?)([^\s?>\/:]*:|)([^\s?>]*[^\s?>\/])[^>]*>/mg;
|