Skip to content

Instantly share code, notes, and snippets.

@trieloff
Created March 9, 2017 19:40
Show Gist options
  • Save trieloff/ab687ec74e9174c8831a9478d7c776c4 to your computer and use it in GitHub Desktop.
Save trieloff/ab687ec74e9174c8831a9478d7c776c4 to your computer and use it in GitHub Desktop.
var github = {
getUserReposUrl: function(user) {
return user.repos_url;
}
};
function main(params) {
github.token = params.token;
return github.getUser()
.then(github.getUserReposUrl);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment