feat(i18n): convert to opaque keys (#1848)

This commit is contained in:
Sam Potts
2026-07-28 16:46:25 +10:00
committed by GitHub
parent be89470447
commit a3e673bd68
221 changed files with 7040 additions and 4307 deletions
+5
View File
@@ -0,0 +1,5 @@
import { flatten } from '@videojs/utils/object';
export function flattenEntries(value: Record<string, unknown>): [string, string][] {
return Object.entries(flatten(value)) as [string, string][];
}