(url, params, headers = {})
| 233 | } |
| 234 | |
| 235 | function directPost(url, params, headers = {}) { |
| 236 | return directRequest('POST', url, params, headers); |
| 237 | } |
| 238 | |
| 239 | function directPut(url, params, headers = {}) { |
| 240 | return directRequest('PUT', url, params, headers); |
no test coverage detected