1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-16 23:58:14 +09:00
hotomoe/packages/frontend/src/scripts/safe-uri-decode.ts

8 lines
124 B
TypeScript
Raw Normal View History

export function safeURIDecode(str: string): string {
try {
return decodeURIComponent(str);
} catch {
return str;
}
}