mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 07:55:52 -05:00
12 lines
295 B
JavaScript
12 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
|