(isForm)
| 74084 | return this.request(mergeConfig(config8 || {}, { |
| 74085 | method, |
| 74086 | url: url2, |
| 74087 | data: (config8 || {}).data |
| 74088 | })); |
| 74089 | }; |
| 74090 | }); |
| 74091 | utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(method) { |
| 74092 | function generateHTTPMethod(isForm) { |
| 74093 | return function httpMethod(url2, data, config8) { |
| 74094 | return this.request(mergeConfig(config8 || {}, { |
| 74095 | method, |
| 74096 | headers: isForm ? { |
| 74097 | "Content-Type": "multipart/form-data" |
| 74098 | } : {}, |
| 74099 | url: url2, |
| 74100 | data |
no test coverage detected
searching dependent graphs…