Skip to main content
Module

x/sheetjs/xlsxworker.flow.js

πŸ“— SheetJS Community Edition -- Spreadsheet Data Toolkit
Extremely Popular
Go to Latest
File
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com *//*:: declare var XLSX: XLSXModule; *//*:: declare var self: DedicatedWorkerGlobalScope; */importScripts('shim.js');/* uncomment the next line for encoding support */importScripts('dist/cpexcel.js');importScripts('jszip.js');importScripts('xlsx.js');/*::self.*/postMessage({t:"ready"});
onmessage = function (evt) { var v; try { v = XLSX.read(evt.data.d, {type: evt.data.b}); /*::self.*/postMessage({t:"xlsx", d:JSON.stringify(v)}); } catch(e) { /*::self.*/postMessage({t:"e",d:e.stack||e}); }};