@deboxsoft/module-core
Advanced tools
Comparing version 2.6.35 to 2.6.36
@@ -656,2 +656,3 @@ import { Container } from './chunk-W3HD2EFH.js'; | ||
} | ||
strArray[0] = typeof strArray[0] !== "undefined"; | ||
if (typeof strArray[0] !== "string") { | ||
@@ -669,3 +670,3 @@ throw new TypeError("Url must be a string. Received " + strArray[0]); | ||
for (let i = 0; i < strArray.length; i++) { | ||
let component = strArray[i]; | ||
let component = strArray[i] === void 0 ? "" : strArray[i]; | ||
if (typeof component !== "string") { | ||
@@ -672,0 +673,0 @@ throw new TypeError("Url must be a string. Received " + component); |
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "2.6.35", | ||
"version": "2.6.36", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
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
51068
1508