sheetjs/xlsxworker.js

15 lines
457 B
JavaScript
Raw Normal View History

2016-12-31 08:11:36 +00:00
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
2014-06-29 18:35:10 +00:00
/* uncomment the next line for encoding support */
2017-03-09 05:49:24 +00:00
importScripts('dist/cpexcel.js');
2014-06-29 18:35:10 +00:00
importScripts('jszip.js');
importScripts('xlsx.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)});
};