* Get information about the repository * @see https://developer.github.com/v3/repos/#get * @param {Requestable.callback} cb - will receive the information about the repository * @return {Promise} - the promise for the http request
(cb)
| 450 | * @return {Promise} - the promise for the http request |
| 451 | */ |
| 452 | getDetails(cb) { |
| 453 | return this._request('GET', `/repos/${this.__fullname}`, null, cb); |
| 454 | } |
| 455 | |
| 456 | /** |
| 457 | * List the contributors to the repository |
no test coverage detected