frontend/.pnpm-store/v3/files/1a/e18ef3fcb394e3451c5036cf6c35191d797510691d1b4913f2c3258ffeae4020632745ab538421076b83d14b78d2c72df1955df9f2f4a1f6f7c248fe2d2a14

15 lines
432 B
Plaintext

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