仪表盘
版本库
文件存储
活动
搜索
登录
main
/
ubcs
统一业务系统系统
概况
操作记录
提交次数
目录
文档
复刻
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://dev.vci-tech.com:1065/r/ubcs
xiejun
2023-08-24
d8ea218c3783dded84bd68556914087fc5bdb67e
[ubcs.git]
/
Source
/
UBCS-WEB
/
src
/
config
/
js-xlsx-master
/
odsbits
/
23_xlml.js
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;