()
| 9 | * tracking the current language (components re-render on switch via useTranslation). |
| 10 | */ |
| 11 | export function activeLocale(): string { |
| 12 | const lang = i18next.resolvedLanguage ?? i18next.language ?? 'en' |
| 13 | return lang.startsWith('zh') ? 'zh-CN' : 'en-US' |
| 14 | } |
| 15 | |
| 16 | export function formatDate(date: Date | string | number | undefined, opts: Intl.DateTimeFormatOptions = {}) { |
| 17 | if (!date) { |
no outgoing calls
no test coverage detected