(target, source, prop, caseless)
| 73253 | } |
| 73254 | ); |
| 73255 | |
| 73256 | // node_modules/axios/lib/core/mergeConfig.js |
| 73257 | var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? { ...thing } : thing; |
| 73258 | function mergeConfig(config1, config22) { |
| 73259 | config22 = config22 || {}; |
| 73260 | const config8 = {}; |
| 73261 | function getMergedValue(target, source, prop, caseless) { |
| 73262 | if (utils_default.isPlainObject(target) && utils_default.isPlainObject(source)) { |
| 73263 | return utils_default.merge.call({ caseless }, target, source); |
| 73264 | } else if (utils_default.isPlainObject(source)) { |
| 73265 | return utils_default.merge({}, source); |
| 73266 | } else if (utils_default.isArray(source)) { |
| 73267 | return source.slice(); |
no test coverage detected
searching dependent graphs…