* Fork a gist. * @see https://developer.github.com/v3/gists/#fork-a-gist * @param {Requestable.callback} [cb] - the function that will receive the gist * @return {Promise} - the Promise for the http request
(cb)
| 64 | * @return {Promise} - the Promise for the http request |
| 65 | */ |
| 66 | fork(cb) { |
| 67 | return this._request('POST', `/gists/${this.__id}/forks`, null, cb); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Update a gist. |
no test coverage detected