mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			9 lines
		
	
	
		
			202 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			202 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | module.exports = function supportsBlockScoping() { | ||
|  | 	try { | ||
|  | 		var f = eval("(function f() { const x = 1; if (true) { const x = 2; } return x; })"); | ||
|  | 		return f() === 1; | ||
|  | 	} catch(e) { | ||
|  | 		return false; | ||
|  | 	} | ||
|  | }; |