* Create a new Gist wrapper * @param {string} [id] - the id for the gist, leave undefined when creating a new gist * @return {Gist}
(id)
| 38 | * @return {Gist} |
| 39 | */ |
| 40 | getGist(id) { |
| 41 | return new Gist(id, this.__auth, this.__apiBase); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Create a new User wrapper |
no outgoing calls
no test coverage detected