frontend/.pnpm-store/v3/files/e6/b03f88d24ae5664edce4a0b66bc4a8971f0269dd43623d51ecdacad05d6bc063933f22b570add1c0f36e93ae7c18a7c6d8ce189aeeb8af045292b565b4927e

16 lines
450 B
Plaintext

/* 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}); }
};