zek 19.0.12 → 19.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2022/zek.mjs CHANGED
@@ -1523,7 +1523,7 @@ class UrlHelper {
1523
1523
  static combine(...parts) {
1524
1524
  let result = '';
1525
1525
  for (const part of parts) {
1526
- if (typeof part === 'undefined' && part === null)
1526
+ if (typeof part === 'undefined' || part === null)
1527
1527
  continue;
1528
1528
  const str = `${part}`;
1529
1529
  result = this.combineEnsureSingleSeparator(result, str, '/');