forked from sheetjs/sheetjs
		
	Two benefits:
    
* Helps avoid with mismatched anonymous errors
    
ref: https://requirejs.org/docs/errors.html#mismatch
    
* Allows for uglification in the demo
		
	
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			418 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			418 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
}
 | 
						|
/*global define */
 | 
						|
/*:: declare var define:any; */
 | 
						|
if(typeof exports !== 'undefined') make_xlsx_lib(exports);
 | 
						|
else if(typeof module !== 'undefined' && module.exports) make_xlsx_lib(module.exports);
 | 
						|
else if(typeof define === 'function' && define.amd) define('xlsx-dist', function() { if(!XLSX.version) make_xlsx_lib(XLSX); return XLSX; });
 | 
						|
else make_xlsx_lib(XLSX);
 | 
						|
/*exported XLS, ODS */
 | 
						|
var XLS = XLSX, ODS = XLSX;
 |