mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-02 19:46:58 +00:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export function safeURIDecode(str: string): string {
|
|
try {
|
|
return decodeURIComponent(str);
|
|
} catch {
|
|
return str;
|
|
}
|
|
}
|