From 39430c4dd88155afdfab126086e9df2c7559cecc Mon Sep 17 00:00:00 2001 From: ohmree <13455401+ohmree@users.noreply.github.com> Date: Mon, 28 Feb 2022 04:21:09 +0200 Subject: [PATCH] Export `mergePath` --- src/client/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/helpers.ts b/src/client/helpers.ts index 320ef4e..182cb65 100644 --- a/src/client/helpers.ts +++ b/src/client/helpers.ts @@ -1,4 +1,4 @@ -function mergePath(basePaths: (string | null)[], path: string) { +export function mergePath(basePaths: (string | null)[], path: string) { if (path.startsWith("/")) { path = path.slice(1); }