axios 1.3.5 → 1.3.6

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.5 Copyright (c) 2023 Matt Zabriskie and contributors
1
+ // Axios v1.3.6 Copyright (c) 2023 Matt Zabriskie and contributors
2
2
  'use strict';
3
3
 
4
4
  function bind(fn, thisArg) {
@@ -193,12 +193,16 @@ const isStream = (val) => isObject(val) && isFunction(val.pipe);
193
193
  * @returns {boolean} True if value is an FormData, otherwise false
194
194
  */
195
195
  const isFormData = (thing) => {
196
- const pattern = '[object FormData]';
196
+ let kind;
197
197
  return thing && (
198
- (typeof FormData === 'function' && thing instanceof FormData) ||
199
- toString.call(thing) === pattern ||
200
- (isFunction(thing.toString) && thing.toString() === pattern)
201
- );
198
+ (typeof FormData === 'function' && thing instanceof FormData) || (
199
+ isFunction(thing.append) && (
200
+ (kind = kindOf(thing)) === 'formdata' ||
201
+ // detect form-data instance
202
+ (kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')
203
+ )
204
+ )
205
+ )
202
206
  };
203
207
 
204
208
  /**
@@ -2616,7 +2620,7 @@ function mergeConfig(config1, config2) {
2616
2620
  return config;
2617
2621
  }
2618
2622
 
2619
- const VERSION = "1.3.5";
2623
+ const VERSION = "1.3.6";
2620
2624
 
2621
2625
  const validators$1 = {};
2622
2626