* Create a new Repository wrapper * @param {string} user - the user who owns the repository * @param {string} repo - the name of the repository * @return {Repository}
(user, repo)
| 76 | * @return {Repository} |
| 77 | */ |
| 78 | getRepo(user, repo) { |
| 79 | return new Repository(this._getFullName(user, repo), this.__auth, this.__apiBase); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Create a new Issue wrapper |
no test coverage detected