mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:23:43 +00:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
module.exports = isGitUrl
|
|
|
|
function isGitUrl (url) {
|
|
switch (url.protocol) {
|
|
case "git:":
|
|
case "git+http:":
|
|
case "git+https:":
|
|
case "git+rsync:":
|
|
case "git+ftp:":
|
|
case "git+ssh:":
|
|
return true
|
|
}
|
|
}
|