mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			533 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			533 B
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| const ModuleDependency = require("../dependencies/ModuleDependency");
 | |
| const makeSerializable = require("../util/makeSerializable");
 | |
| 
 | |
| class FallbackItemDependency extends ModuleDependency {
 | |
| 	constructor(request) {
 | |
| 		super(request);
 | |
| 	}
 | |
| 
 | |
| 	get type() {
 | |
| 		return "fallback item";
 | |
| 	}
 | |
| }
 | |
| 
 | |
| makeSerializable(
 | |
| 	FallbackItemDependency,
 | |
| 	"webpack/lib/container/FallbackItemDependency"
 | |
| );
 | |
| 
 | |
| module.exports = FallbackItemDependency;
 |