update at 2026-02-14 10:12:32

This commit is contained in:
douboer@gmail.com
2026-02-14 10:12:32 +08:00
parent 68cc00beec
commit 5e76b0ebb7
212 changed files with 76809 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
importScripts('dist/shim.min.js');
/* uncomment the next line for encoding support */
importScripts('dist/cpexcel.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}); }
};