sheetjs/xlsxworker.js

15 lines
433 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 {
2017-08-19 23:13:21 +00:00
v = XLSX.read(oEvent.data.d, {type: oEvent.data.b});
postMessage({t:"xlsx", d:JSON.stringify(v)});
2014-06-29 18:35:10 +00:00
} catch(e) { postMessage({t:"e",d:e.stack||e}); }
2012-12-03 19:47:44 +00:00
};