From dd6bd498db25344b2cccf56abfb656576a496d38 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 18 Feb 2025 02:54:07 +0000
Subject: [PATCH] chore(deps): bump the production-dependencies group with 5 updates (#1775)
---
quartz/util/path.ts | 27 +++++++++++++++++++--------
1 files changed, 19 insertions(+), 8 deletions(-)
diff --git a/quartz/util/path.ts b/quartz/util/path.ts
index d2409e1..5835f15 100644
--- a/quartz/util/path.ts
+++ b/quartz/util/path.ts
@@ -183,15 +183,26 @@
}
export function joinSegments(...args: string[]): string {
- return args
- .filter((segment) => segment !== "")
- .map((segment, index) =>
- index === 0
- ? // Deduplicate but not remove leading slashes for first segment
- segment.replace(/\/+$/g, "").replace(/^\/\/+/g, "/")
- : segment.replace(/^\/+|\/+$/g, ""),
- )
+ if (args.length === 0) {
+ return ""
+ }
+
+ let joined = args
+ .filter((segment) => segment !== "" && segment !== "/")
+ .map((segment) => stripSlashes(segment))
.join("/")
+
+ // if the first segment starts with a slash, add it back
+ if (args[0].startsWith("/")) {
+ joined = "/" + joined
+ }
+
+ // if the last segment is a folder, add a trailing slash
+ if (args[args.length - 1].endsWith("/")) {
+ joined = joined + "/"
+ }
+
+ return joined
}
export function getAllSegmentPrefixes(tags: string): string[] {
--
Gitblit v1.10.0