UNPKG
c1-cms
Version:
latest (6.2.18)
6.2.18
6.2.17
6.2.16
6.2.15
Contains React components distributed with C1 CMS.
c1-cms
/
console
/
access
/
utils.js
7 lines
(5 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
getBaseUrl
(
) {
let
baseUrlMatches =
/^.*?(?=\/Composite\/)/gi
.
exec
(location.
pathname
);
let
baseUrl = baseUrlMatches ==
null
?
""
: baseUrlMatches[
0
];
return
baseUrl; }