* Show the user's profile * @see https://developer.github.com/v3/users/#get-a-single-user * @param {Requestable.callback} [cb] - will receive the user's information * @return {Promise} - the promise for the http request
(cb)
| 138 | * @return {Promise} - the promise for the http request |
| 139 | */ |
| 140 | getProfile(cb) { |
| 141 | return this._request('GET', this.__getScopedUrl(''), null, cb); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Gets the list of starred repositories for the user |
no test coverage detected