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.

resolve-url.js 295B

123456789101112
  1. // Copyright 2014 Simon Lydell
  2. // X11 (“MIT”) Licensed. (See LICENSE.)
  3. var url = require("url")
  4. function resolveUrl(/* ...urls */) {
  5. return Array.prototype.reduce.call(arguments, function(resolved, nextUrl) {
  6. return url.resolve(resolved, nextUrl)
  7. })
  8. }
  9. module.exports = resolveUrl