Projekt

Obecné

Profil

Stáhnout (219 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
var url = require("url")
2
3
function resolveUrl(/* ...urls */) {
4
  return Array.prototype.reduce.call(arguments, function(resolved, nextUrl) {
5
    return url.resolve(resolved, nextUrl)
6
  })
7
}
8
9
module.exports = resolveUrl