Ben Schlegel
2023-09-16 fea352849c6972da4b3b8935eb2e86f6cefc76ed
quartz/util/path.ts
@@ -123,7 +123,10 @@
}
export function joinSegments(...args: string[]): string {
  return args.filter((segment) => segment !== "").join("/")
  return args
    .filter((segment) => segment !== "")
    .join("/")
    .replace(/\/\/+/g, "/")
}
export function getAllSegmentPrefixes(tags: string): string[] {