1 Star 0 Fork 1

zzy1661/js-xlsx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xlsxworker.js 450 Bytes
一键复制 编辑 原始数据 按行查看 历史
SheetJS 提交于 2017-09-30 02:18 . version bump 0.11.5: "string" type
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
importScripts('shim.js');
/* uncomment the next line for encoding support */
importScripts('dist/cpexcel.js');
importScripts('jszip.js');
importScripts('xlsx.js');
postMessage({t:"ready"});
onmessage = function (evt) {
var v;
try {
v = XLSX.read(evt.data.d, {type: evt.data.b});
postMessage({t:"xlsx", d:JSON.stringify(v)});
} catch(e) { postMessage({t:"e",d:e.stack||e}); }
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zzy1661/js-xlsx.git
git@gitee.com:zzy1661/js-xlsx.git
zzy1661
js-xlsx
js-xlsx
master

搜索帮助