2014-01-28 16:38:02 +00:00
|
|
|
/* xlsx.js (C) 2013-2014 SheetJS -- http://sheetjs.com */
|
2014-05-22 12:16:51 +00:00
|
|
|
/* uncomment the next line for encoding support */
|
|
|
|
//importScripts('dist/cpexcel.js');
|
2013-11-22 22:58:11 +00:00
|
|
|
importScripts('jszip.js');
|
|
|
|
importScripts('xlsx.js');
|
2014-10-10 02:22:38 +00:00
|
|
|
/* uncomment the next line for ODS support */
|
|
|
|
importScripts('dist/ods.js');
|
2013-11-22 22:58:11 +00:00
|
|
|
postMessage({t:"ready"});
|
|
|
|
|
|
|
|
onmessage = function (oEvent) {
|
|
|
|
var v;
|
|
|
|
try {
|
2014-06-29 18:29:45 +00:00
|
|
|
v = XLSX.read(oEvent.data.d, {type: oEvent.data.b ? 'binary' : 'base64'});
|
|
|
|
} catch(e) { postMessage({t:"e",d:e.stack||e}); }
|
2013-11-22 22:58:11 +00:00
|
|
|
postMessage({t:"xlsx", d:JSON.stringify(v)});
|
|
|
|
};
|