(url, params, headers = {})
| 229 | } |
| 230 | |
| 231 | function directGet(url, params, headers = {}) { |
| 232 | return directRequest('GET', url, params, headers); |
| 233 | } |
| 234 | |
| 235 | function directPost(url, params, headers = {}) { |
| 236 | return directRequest('POST', url, params, headers); |
no test coverage detected