2016-12-31 08:20:45 +00:00
|
|
|
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
2021-10-13 07:20:25 +00:00
|
|
|
importScripts('dist/shim.min.js');
|
2014-05-22 12:16:51 +00:00
|
|
|
/* uncomment the next line for encoding support */
|
2017-03-09 05:24:32 +00:00
|
|
|
importScripts('dist/cpexcel.js');
|
2013-11-22 22:58:11 +00:00
|
|
|
importScripts('xlsx.js');
|
|
|
|
postMessage({t:"ready"});
|
|
|
|
|
2017-09-24 23:40:09 +00:00
|
|
|
onmessage = function (evt) {
|
2013-11-22 22:58:11 +00:00
|
|
|
var v;
|
|
|
|
try {
|
2022-04-16 01:19:21 +00:00
|
|
|
v = XLSX.read(evt.data.d, {type: evt.data.b, codepage: evt.data.c});
|
2017-02-03 20:50:45 +00:00
|
|
|
postMessage({t:"xlsx", d:JSON.stringify(v)});
|
2017-08-19 23:06:34 +00:00
|
|
|
} catch(e) { postMessage({t:"e",d:e.stack||e}); }
|
2013-11-22 22:58:11 +00:00
|
|
|
};
|