We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb55ee3 commit 96e6e8eCopy full SHA for 96e6e8e
github.js
@@ -37,7 +37,7 @@
37
Github.User = function(options) {
38
this.username = options.username;
39
var userPath = "/users/" + options.username;
40
- this.repos = function() {
+ this.repos = function(cb) {
41
_request("GET", userPath + "/repos", null, function(err, res) {
42
cb(err, res);
43
});
0 commit comments