mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-31 22:50:43 +00:00
8 lines
124 B
TypeScript
8 lines
124 B
TypeScript
![]() |
export function safeURIDecode(str: string): string {
|
||
|
try {
|
||
|
return decodeURIComponent(str);
|
||
|
} catch {
|
||
|
return str;
|
||
|
}
|
||
|
}
|