Files
podkop/fe-app-podkop/src/helpers/getProxyUrlName.ts
2025-10-06 03:43:55 +03:00

14 lines
209 B
TypeScript

export function getProxyUrlName(url: string) {
try {
const [_link, hash] = url.split('#');
if (!hash) {
return '';
}
return decodeURIComponent(hash);
} catch {
return '';
}
}