export const create = {
    object: {
        fromEntries: <Value> (array: [string, Value][]): Record<string, Value> => {
            const object: Record<string, Value> = {}
            array.forEach(([key, value]) => {
                object[key] = value
            })
    
            return object
        },
    },
}
