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.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							685 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							685 B
						
					
					
				| "use strict";
 | |
| 
 | |
| exports.__esModule = true;
 | |
| exports.has = has;
 | |
| exports.laterLogMissing = laterLogMissing;
 | |
| exports.logMissing = logMissing;
 | |
| exports.resolve = resolve;
 | |
| 
 | |
| function resolve(dirname, moduleName, absoluteImports) {
 | |
|   if (absoluteImports === false) return moduleName;
 | |
|   throw new Error(`"absoluteImports" is not supported in bundles prepared for the browser.`);
 | |
| } // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | |
| 
 | |
| 
 | |
| function has(basedir, name) {
 | |
|   return true;
 | |
| } // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | |
| 
 | |
| 
 | |
| function logMissing(missingDeps) {} // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | |
| 
 | |
| 
 | |
| function laterLogMissing(missingDeps) {} |