fetch-plus
Advanced tools
Comparing version 3.10.3 to 3.10.4
@@ -147,3 +147,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
var errorMiddlewares = []; | ||
var fetchFunc = void 0; | ||
var fetchFunc = undefined; | ||
@@ -449,3 +449,3 @@ return new Promise(function (resolve, reject) { | ||
mapped[key] = value; | ||
} else if (typeof FormData === "function" && value instanceof FormData) { | ||
} else if (((typeof FormData === "undefined" ? "undefined" : _typeof(FormData)) === "object" || typeof FormData === "function") && value instanceof FormData) { | ||
mapped[key] = value; | ||
@@ -527,3 +527,3 @@ } else if ((typeof value === "undefined" ? "undefined" : _typeof(value)) === "object") { | ||
if (Array.isArray(val)) { | ||
return val.sort().map(function (val2) { | ||
return val.slice().sort().map(function (val2) { | ||
return strictUriEncode(key) + '=' + strictUriEncode(val2); | ||
@@ -547,3 +547,3 @@ }).join('&'); | ||
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) { | ||
return '%' + c.charCodeAt(0).toString(16); | ||
return '%' + c.charCodeAt(0).toString(16).toUpperCase(); | ||
}); | ||
@@ -550,0 +550,0 @@ }; |
{ | ||
"name": "fetch-plus", | ||
"description": "A convenient Fetch API library with first-class middleware support", | ||
"version": "3.10.3", | ||
"version": "3.10.4", | ||
"license": "BSD-3-Clause", | ||
@@ -6,0 +6,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17930