sheetjs/xlsxworker.js

13 lines
369 B
JavaScript
Raw Normal View History

2016-12-31 08:11:36 +00:00
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
2017-10-17 00:36:51 +00:00
importScripts('shim.js');
importScripts('xlsx.full.min.js');
2012-12-03 19:47:44 +00:00
postMessage({t:"ready"});
2017-10-17 00:36:51 +00:00
onmessage = function (evt) {
2012-12-03 19:47:44 +00:00
var v;
try {
2022-04-16 01:33:12 +00:00
v = XLSX.read(evt.data.d, {type: evt.data.b, codepage: evt.data.c});
2017-08-19 23:13:21 +00:00
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
};