axios 1.3.3 → 1.3.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.

Potentially problematic release.


This version of axios might be problematic. Click here for more details.

@@ -1,4 +1,4 @@
1
- // Axios v1.3.3 Copyright (c) 2023 Matt Zabriskie and contributors
1
+ // Axios v1.3.4 Copyright (c) 2023 Matt Zabriskie and contributors
2
2
  'use strict';
3
3
 
4
4
  function bind(fn, thisArg) {
@@ -1214,6 +1214,8 @@ var URLSearchParams$1 = typeof URLSearchParams !== 'undefined' ? URLSearchParams
1214
1214
 
1215
1215
  var FormData$1 = typeof FormData !== 'undefined' ? FormData : null;
1216
1216
 
1217
+ var Blob$1 = typeof Blob !== 'undefined' ? Blob : null;
1218
+
1217
1219
  /**
1218
1220
  * Determine if we're running in a standard browser environment
1219
1221
  *
@@ -1268,7 +1270,7 @@ var platform = {
1268
1270
  classes: {
1269
1271
  URLSearchParams: URLSearchParams$1,
1270
1272
  FormData: FormData$1,
1271
- Blob
1273
+ Blob: Blob$1
1272
1274
  },
1273
1275
  isStandardBrowserEnv,
1274
1276
  isStandardBrowserWebWorkerEnv,
@@ -2616,7 +2618,7 @@ function mergeConfig(config1, config2) {
2616
2618
  return config;
2617
2619
  }
2618
2620
 
2619
- const VERSION = "1.3.3";
2621
+ const VERSION = "1.3.4";
2620
2622
 
2621
2623
  const validators$1 = {};
2622
2624