* Delete a repository * @see https://developer.github.com/v3/repos/#delete-a-repository * @param {Requestable.callback} [cb] - will receive true if the request is successful * @return {Promise} - the promise for the http request
(cb)
| 72 | * @return {Promise} - the promise for the http request |
| 73 | */ |
| 74 | deleteRepo(cb) { |
| 75 | return this._request('DELETE', `/repos/${this.__fullname}`, null, cb); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * List the tags on a repository |
no test coverage detected