forked from sheetjs/sheetjs
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			456 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			456 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* xlsx.js (C) 2013-2014 SheetJS -- http://sheetjs.com */
 | |
| /* uncomment the next line for encoding support */
 | |
| //importScripts('dist/cpexcel.js');
 | |
| importScripts('jszip.js');
 | |
| importScripts('xlsx.js');
 | |
| postMessage({t:"ready"});
 | |
| 
 | |
| onmessage = function (oEvent) {
 | |
|   var v;
 | |
|   try {
 | |
|     v = XLSX.read(oEvent.data.d, {type: oEvent.data.b ? 'binary' : 'base64'});
 | |
|   } catch(e) { postMessage({t:"e",d:e.stack||e}); }
 | |
|   postMessage({t:"xlsx", d:JSON.stringify(v)});
 | |
| };
 |