* List followers of a user * @see https://developer.github.com/v3/users/followers/#list-followers-of-a-user * @param {Requestable.callback} [cb] - will receive the list of followers * @return {Promise} - the promise for the http request
(cb)
| 88 | * @return {Promise} - the promise for the http request |
| 89 | */ |
| 90 | listFollowers(cb) { |
| 91 | return this._request('GET', this.__getScopedUrl('followers'), null, cb); |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * List users followed by another user |
no test coverage detected