UNPKG

vuepress-theme-hope

Version:

A light vuepress theme with tons of features

5 lines 301 B
import { ensureEndingSlash, isLinkAbsolute, isLinkWithProtocol, } from "@vuepress/helper/client"; export const resolvePrefix = (prefix = "", path = "") => isLinkWithProtocol(path) || isLinkAbsolute(path) ? path : `${ensureEndingSlash(prefix)}${path}`; //# sourceMappingURL=resolvePrefix.js.map