mirror of
https://github.com/zoriya/v10.git
synced 2026-08-12 00:49:29 +00:00
6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
import { flatten } from '@videojs/utils/object';
|
|
|
|
export function flattenEntries(value: Record<string, unknown>): [string, string][] {
|
|
return Object.entries(flatten(value)) as [string, string][];
|
|
}
|