work.suroh.tk/node_modules/source-map-resolve/lib/resolve-url.js

13 lines
295 B
JavaScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
// 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