* Generates url based on format sent (takes endpoint + url if latter lacks 'http') * * @param {*} url
(url)
| 267 | * @param {*} url |
| 268 | */ |
| 269 | _url(url) { |
| 270 | return /^\w+\:\/\//.test(url) ? url : this.options.endpoint + url |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Set timeout for the request |
no outgoing calls
no test coverage detected