Skip to content

Instantly share code, notes, and snippets.

@yorkie
Created August 21, 2014 15:45
Show Gist options
  • Save yorkie/a4ba009c9ec82134cc57 to your computer and use it in GitHub Desktop.
Save yorkie/a4ba009c9ec82134cc57 to your computer and use it in GitHub Desktop.
var url = require('url');
var assert = require('assert');
function parse(repo, githubHost) {
githubHost = githubHost || 'github.com'
if (typeof repo === 'object')
return repo.url
var repoObj = url.parse(repo);
var protocol = repoObj.protocol;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment