Files
bot/.venv/lib/python3.12/site-packages/faker/decode/__init__.py
2026-05-18 14:15:59 +07:00

14 lines
234 B
Python

from .codes import codes
def unidecode(txt: str) -> str:
chars = ""
for ch in txt:
codepoint = ord(ch)
try:
chars += codes[codepoint]
except IndexError:
pass
return chars