UNPKG

bricks-cli

Version:

Command line tool for developing ambitious ember.js apps

14 lines (12 loc) 230 B
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 } }