mirror of
https://github.com/nocobase/nocobase
synced 2024-11-17 08:25:56 +00:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
|
const getSubAppName = () => {
|
||
|
const match = window.location.pathname.match(/^\/apps\/([^/]*)\//);
|
||
|
if (!match) {
|
||
|
return '';
|
||
|
}
|
||
|
return match[1].toUpperCase();
|
||
|
};
|
||
|
|
||
|
export default getSubAppName;
|