(url, data, headers)
| 74 | }, |
| 75 | |
| 76 | post(url, data, headers) { |
| 77 | return this._request('post', url, data, headers) |
| 78 | }, |
| 79 | |
| 80 | put(url, data, headers) { |
| 81 | return this._request('put', url, data, headers) |
nothing calls this directly
no outgoing calls
no test coverage detected