magnetar/fe_calckey/frontend/client/src/scripts/safe-uri-decode.ts

8 lines
145 B
TypeScript
Raw Normal View History

2023-07-07 19:22:30 +00:00
export function safeURIDecode(str: string): string {
try {
return decodeURIComponent(str);
} catch {
return str;
}
2023-07-07 19:22:30 +00:00
}