TelegramBot/src/utils/language-code.ts
2025-05-02 20:08:13 -04:00

9 lines
No EOL
191 B
TypeScript

import { Context } from "telegraf";
export const languageCode = (ctx: Context) => {
if(ctx.from) {
return ctx.from.language_code
} else {
return 'en'
}
}