mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 17:26:22 +01:00
7 lines
138 B
JavaScript
7 lines
138 B
JavaScript
// @flow
|
|
export const contextPath = window.ctxPath || "";
|
|
|
|
export function withContextPath(path: string) {
|
|
return contextPath + path;
|
|
}
|