2017-02-03 20:50:45 +00:00
|
|
|
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
|
|
/*:: declare var XLSX: XLSXModule; */
|
|
|
|
/*:: declare var self: DedicatedWorkerGlobalScope; */
|
2017-09-30 06:18:11 +00:00
|
|
|
importScripts('shim.js');
|
2017-08-19 23:06:34 +00:00
|
|
|
/* uncomment the next line for encoding support */
|
2017-03-09 05:24:32 +00:00
|
|
|
importScripts('dist/cpexcel.js');
|
2017-02-03 20:50:45 +00:00
|
|
|
importScripts('jszip.js');
|
|
|
|
importScripts('xlsx.js');
|
|
|
|
/*::self.*/postMessage({t:"ready"});
|
|
|
|
|
2017-09-24 23:40:09 +00:00
|
|
|
onmessage = function (evt) {
|
2017-02-03 20:50:45 +00:00
|
|
|
var v;
|
|
|
|
try {
|
2017-09-24 23:40:09 +00:00
|
|
|
v = XLSX.read(evt.data.d, {type: evt.data.b});
|
2017-08-19 23:06:34 +00:00
|
|
|
/*::self.*/postMessage({t:"xlsx", d:JSON.stringify(v)});
|
2017-02-03 20:50:45 +00:00
|
|
|
} catch(e) { /*::self.*/postMessage({t:"e",d:e.stack||e}); }
|
|
|
|
};
|