axios 1.8.3 → 1.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/axios.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Axios v1.8.3 Copyright (c) 2025 Matt Zabriskie and contributors */
1
+ /*! Axios v1.8.4 Copyright (c) 2025 Matt Zabriskie and contributors */
2
2
  function bind(fn, thisArg) {
3
3
  return function wrap() {
4
4
  return fn.apply(thisArg, arguments);
@@ -2226,7 +2226,7 @@ function combineURLs(baseURL, relativeURL) {
2226
2226
  */
2227
2227
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
2228
2228
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
2229
- if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
2229
+ if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
2230
2230
  return combineURLs(baseURL, requestedURL);
2231
2231
  }
2232
2232
  return requestedURL;
@@ -3066,7 +3066,7 @@ function dispatchRequest(config) {
3066
3066
  });
3067
3067
  }
3068
3068
 
3069
- const VERSION$1 = "1.8.3";
3069
+ const VERSION$1 = "1.8.4";
3070
3070
 
3071
3071
  const validators$1 = {};
3072
3072