forked from sheetjs/sheetjs
		
	- README and example cleanup - basic XLSB and ODS write support - flow typecheck for ODS file Note: xlsx.js flow fails: https://github.com/facebook/flow/issues/380 - exposed jszip compression (fixes #220, closes #284) README issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #202 | @sao93859 | closes #202 | | #211 | @alexanderchan | closes #211 corrected examples | | #327 | @cskaandorp | changed saveAs example to match write tests | | #424 | @dskrvk | added note about s2roa h/t @LeonardoPatignio | | #496 | @jimmywarting | closes #496 adapted rABS examples with rAAS | ODS file format issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #148 | @user4815162342| closes #148 h/t @ziacik | | #166 | @paulproteus | closes #166 rudimentary ODS write support | | #177 | @ziacik | closes #177 | | #179 | @ziacik | closes #179 use JSON when available | | #317 | @ziacik | closes #317 | | #328 | @think01 | closes #328 | | #383 | @mdamt | closes #383 duplicate cells should be copied | | #430 | @RB-Lab | closes #430 | | #546 | @lgodard | closes #546 thanks to other changes |
		
			
				
	
	
		
			20 lines
		
	
	
		
			663 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			663 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
 | |
| /* uncomment the next line for encoding support */
 | |
| /*:: declare var XLSX: XLSXModule; */
 | |
| /*:: declare var self: DedicatedWorkerGlobalScope; */
 | |
| //importScripts('dist/cpexcel.js');
 | |
| importScripts('jszip.js');
 | |
| importScripts('xlsx.js');
 | |
| /* uncomment the next line for ODS support */
 | |
| importScripts('dist/ods.js');
 | |
| /*::self.*/postMessage({t:"ready"});
 | |
| 
 | |
| onmessage = function (oEvent) {
 | |
|   var v;
 | |
|   try {
 | |
|     v = XLSX.read(oEvent.data.d, {type: oEvent.data.b ? 'binary' : 'base64'});
 | |
|   } catch(e) { /*::self.*/postMessage({t:"e",d:e.stack||e}); }
 | |
|   /*::self.*/
 | |
|   postMessage({t:"xlsx", d:JSON.stringify(v)});
 | |
| };
 |