()
| 118 | } |
| 119 | |
| 120 | const getSupportLanguages = (): string[] => { |
| 121 | return SUPPORTED_LANGS.map((v) => v.value); |
| 122 | }; |
| 123 | |
| 124 | const searchSupportLanguage = (lang: string) => { |
| 125 | const findLang = getSupportLanguages().find((v) => v.includes(toStandardLang(lang))); |
no outgoing calls
no test coverage detected