mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-06 19:46:52 +03:00
14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
export function getProxyUrlName(url: string) {
|
|
try {
|
|
const [_link, hash] = url.split('#');
|
|
|
|
if (!hash) {
|
|
return '';
|
|
}
|
|
|
|
return decodeURIComponent(hash);
|
|
} catch {
|
|
return '';
|
|
}
|
|
}
|