forked from sheetjs/sheetjs
		
	- proper JS string input / output type - bower main now uses full version (fixes #820 h/t @newmesiss) - DOM parse directly acts on innerHTML (see #779 h/t @danxfisher) - unicode core props and ext props (fixes #822 h/t @fureweb-com) - shim update for IE10/11 - test refresh and flow checks
		
			
				
	
	
		
			16 lines
		
	
	
		
			450 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			450 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
		
			Generated
		
	
	
| /* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
 | |
| importScripts('shim.js');
 | |
| /* uncomment the next line for encoding support */
 | |
| importScripts('dist/cpexcel.js');
 | |
| importScripts('jszip.js');
 | |
| importScripts('xlsx.js');
 | |
| postMessage({t:"ready"});
 | |
| 
 | |
| onmessage = function (evt) {
 | |
|   var v;
 | |
|   try {
 | |
|     v = XLSX.read(evt.data.d, {type: evt.data.b});
 | |
| postMessage({t:"xlsx", d:JSON.stringify(v)});
 | |
|   } catch(e) { postMessage({t:"e",d:e.stack||e}); }
 | |
| };
 |