@cloudbase/oauth
Advanced tools
Comparing version 1.3.4-beta to 1.3.5-beta
@@ -18,4 +18,9 @@ "use strict"; | ||
copyOptions.body = JSON.stringify(copyOptions.body, (key, value) => { | ||
if (value && value !== '') { | ||
return value; | ||
if (value) { | ||
if (value instanceof Map) { | ||
return Object.fromEntries(value.entries()); | ||
} | ||
else if (value !== '') { | ||
return value; | ||
} | ||
} | ||
@@ -22,0 +27,0 @@ }); |
{ | ||
"name": "@cloudbase/oauth", | ||
"version": "1.3.4-beta", | ||
"version": "1.3.5-beta", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
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
133638
2826