sheetjs/xlsxworker.js

13 lines
392 B
JavaScript
Raw Normal View History

2014-04-23 01:21:59 +00:00
/* xlsx.js (C) 2013-2014 SheetJS -- http://sheetjs.com */
importScripts('xlsx.core.min.js');
2012-12-03 19:47:44 +00:00
postMessage({t:"ready"});
onmessage = function (oEvent) {
var v;
try {
2013-12-26 05:38:44 +00:00
//postMessage({t:'e', d:oEvent.data.b});
v = XLSX.read(oEvent.data.d, {type: oEvent.data.b ? 'binary': 'base64'});
2012-12-03 19:47:44 +00:00
} catch(e) { postMessage({t:"e",d:e.stack}); }
postMessage({t:"xlsx", d:JSON.stringify(v)});
};