This commit is contained in:
Pallavi
2025-08-24 22:20:52 +05:30
parent 78f464f6ca
commit 8a62f12e8b

View File

@@ -59,7 +59,7 @@ function toPunycode(domain: string): string {
function fromPunycode(domain: string): string {
try {
const parts = toUnicode(domain)
const parts = toUnicode(domain);
return parts;
} catch (error) {
return domain;