You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							497 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							497 B
						
					
					
				module.exports = function(module) { | 
						|
	if (!module.webpackPolyfill) { | 
						|
		module.deprecate = function() {}; | 
						|
		module.paths = []; | 
						|
		// module.parent = undefined by default | 
						|
		if (!module.children) module.children = []; | 
						|
		Object.defineProperty(module, "loaded", { | 
						|
			enumerable: true, | 
						|
			get: function() { | 
						|
				return module.l; | 
						|
			} | 
						|
		}); | 
						|
		Object.defineProperty(module, "id", { | 
						|
			enumerable: true, | 
						|
			get: function() { | 
						|
				return module.i; | 
						|
			} | 
						|
		}); | 
						|
		module.webpackPolyfill = 1; | 
						|
	} | 
						|
	return module; | 
						|
};
 | 
						|
 |