* List users followed by another user * @see https://developer.github.com/v3/users/followers/#list-users-followed-by-another-user * @param {Requestable.callback} [cb] - will receive the list of who a user is following * @return {Promise} - the promise for the http request
(cb)
| 98 | * @return {Promise} - the promise for the http request |
| 99 | */ |
| 100 | listFollowing(cb) { |
| 101 | return this._request('GET', this.__getScopedUrl('following'), null, cb); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * List the user's gists |
no test coverage detected