export const extract = {
    entries: <Value> (object: Record<string, Value> | Value[]): [string, Value][] => (
        Object.keys(object).map(key => [key, (object as Record<string, Value>)[key]!])
    ),
}
