mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-02 22:30:39 +08: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
|