* List the gist's comments * @see https://developer.github.com/v3/gists/comments/#list-comments-on-a-gist * @param {Requestable.callback} [cb] - will receive the array of comments * @return {Promise} - the promise for the http request
(cb)
| 136 | * @return {Promise} - the promise for the http request |
| 137 | */ |
| 138 | listComments(cb) { |
| 139 | return this._requestAllPages(`/gists/${this.__id}/comments`, null, cb); |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Fetch one of the gist's comments |
no test coverage detected