sheetjs/xlsxworker.js

17 lines
527 B
JavaScript
Raw Normal View History

2014-04-23 01:21:59 +00:00
/* xlsx.js (C) 2013-2014 SheetJS -- http://sheetjs.com */
2014-06-29 18:35:10 +00:00
/* uncomment the next line for encoding support */
//importScripts('dist/cpexcel.js');
importScripts('jszip.js');
importScripts('xlsx.js');
2014-10-10 02:12:25 +00:00
/* uncomment the next line for ODS support */
importScripts('ods.js');
2012-12-03 19:47:44 +00:00
postMessage({t:"ready"});
onmessage = function (oEvent) {
var v;
try {
2014-06-29 18:35:10 +00:00
v = XLSX.read(oEvent.data.d, {type: oEvent.data.b ? 'binary' : 'base64'});
} catch(e) { postMessage({t:"e",d:e.stack||e}); }
2012-12-03 19:47:44 +00:00
postMessage({t:"xlsx", d:JSON.stringify(v)});
};