Comparing version 1.0.49 to 1.0.50
{ | ||
"name": "uquik", | ||
"version": "1.0.49", | ||
"version": "1.0.50", | ||
"description": "uQuik HTTP(S) framework", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -265,4 +265,10 @@ const byteToHex = [ | ||
for (let i = 0; i < length; i++) { | ||
const value = array[i] === undefined || array[i] === null ? '' : array[i] | ||
result += i !== last ? value + separator : value | ||
if (array[i] === undefined || array[i] === null) { | ||
if (i !== last) result += separator | ||
} else if (typeof array[i] === 'object') { | ||
const value = array[i].toString() | ||
result += i !== last ? value + separator : value | ||
} else { | ||
result += i !== last ? array[i] + separator : array[i] | ||
} | ||
} | ||
@@ -269,0 +275,0 @@ return result |
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
426762
15505