deno.land / x / sheetjs@v0.18.3 / xlsxworker.flow.js

xlsxworker.flow.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com *//*:: declare var XLSX: XLSXModule; *//*:: declare var self: DedicatedWorkerGlobalScope; */importScripts('dist/shim.min.js');/* uncomment the next line for encoding support */importScripts('dist/cpexcel.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}); }};
sheetjs

Version Info

Tagged at
2 years ago