mirror of
				https://gitea.com/actions/setup-python.git
				synced 2025-10-31 17:18:07 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			295 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			295 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2014 Simon Lydell
 | |
| // X11 (“MIT”) Licensed. (See LICENSE.)
 | |
| 
 | |
| var url = require("url")
 | |
| 
 | |
| function resolveUrl(/* ...urls */) {
 | |
|   return Array.prototype.reduce.call(arguments, function(resolved, nextUrl) {
 | |
|     return url.resolve(resolved, nextUrl)
 | |
|   })
 | |
| }
 | |
| 
 | |
| module.exports = resolveUrl
 |