Welcome to mirror list, hosted at ThFree Co, Russian Federation.

normalize-git-url.js « normalize-git-url « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7662037940f7a5f5e7f18e4a7fcd9e269dd9dc88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var url = require("url")

module.exports = function normalize (u) {
  var parsed = url.parse(u, true)

  // git is so tricky!
  // if the path is like ssh://foo:22/some/path then it works, but
  // it needs the ssh://
  // If the path is like ssh://foo:some/path then it works, but
  // only if you remove the ssh://
  if (parsed.protocol) {
    parsed.protocol = parsed.protocol.replace(/^git\+/, "")

    // ssh paths that are scp-style urls don't need the ssh://
    parsed.pathname = parsed.pathname.replace(/^\/?:/, "/")
  }

  // figure out what we should check out.
  var checkout = parsed.hash && parsed.hash.substr(1) || "master"
  parsed.hash = ""

  u = url.format(parsed)
  return {
    url : u,
    branch : checkout
  }
}