* Create a new repository for the currently authenticated user * @see https://developer.github.com/v3/repos/#create * @param {object} options - the repository definition * @param {Requestable.callback} [cb] - will receive the API response * @return {Promise} - the promise for the htt
(options, cb)
| 209 | * @return {Promise} - the promise for the http request |
| 210 | */ |
| 211 | createRepo(options, cb) { |
| 212 | return this._request('POST', '/user/repos', options, cb); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | module.exports = User; |
no test coverage detected