conjure-client
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -206,2 +206,5 @@ "use strict"; | ||
var _this = this; | ||
if (data == null) { | ||
return ""; | ||
} | ||
var query = []; | ||
@@ -208,0 +211,0 @@ var _loop_1 = function (key) { |
{ | ||
"name": "conjure-client", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "An HTTP bridge library for use in front end applications and generated conjure code", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
@@ -194,2 +194,6 @@ /** | ||
private buildQueryString(data: { [key: string]: any }) { | ||
if (data == null) { | ||
return ""; | ||
} | ||
const query: string[] = []; | ||
@@ -196,0 +200,0 @@ for (const key of Object.keys(data)) { |
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
72383
1407