* Search for users * @see https://developer.github.com/v3/search/#search-users * @param {Search.Params} [options] - additional parameters for the search * @param {Requestable.callback} [cb] - will receive the results of the search * @return {Promise} - the promise for the http reques
(options, cb)
| 95 | * @return {Promise} - the promise for the http request |
| 96 | */ |
| 97 | forUsers(options, cb) { |
| 98 | return this._search('users', options, cb); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | module.exports = Search; |