* Gets the list of starred repositories for the user * @see https://developer.github.com/v3/activity/starring/#list-repositories-being-starred * @param {Requestable.callback} [cb] - will receive the list of starred repositories * @return {Promise} - the promise for the http request
(cb)
| 148 | * @return {Promise} - the promise for the http request |
| 149 | */ |
| 150 | listStarredRepos(cb) { |
| 151 | let requestOptions = this._getOptionsWithDefaults(); |
| 152 | return this._requestAllPages(this.__getScopedUrl('starred'), requestOptions, cb); |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Gets the list of starred gists for the user |
no test coverage detected