()
| 150 | }; |
| 151 | |
| 152 | const isCN = () => { |
| 153 | return ( |
| 154 | getCurrentLang() === "zh_cn" || |
| 155 | getCurrentLang() === "zh_tw" || |
| 156 | window.navigator.language.includes("zh") |
| 157 | ); |
| 158 | }; |
| 159 | |
| 160 | const isEN = () => { |
| 161 | return getCurrentLang() === "en_us"; |
nothing calls this directly
no test coverage detected