2023-07-27 14:31:52 +09:00
|
|
|
/*
|
2024-02-14 00:59:27 +09:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 14:31:52 +09:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-07-13 18:11:54 +09:00
|
|
|
export function safeURIDecode(str: string): string {
|
|
|
|
try {
|
|
|
|
return decodeURIComponent(str);
|
|
|
|
} catch {
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
}
|