import { union } from 'lodash' export const removeUndefinedProps = (obj: T): Partial => { const newObj: Partial = {} const keys = Object.keys(obj) as Array for (const key of keys) { if ((obj as any)[key] !== undefined) newObj[key] = (obj as any)[key] } return newObj } export const addObjects = ( obj1: T, obj2: T ) => { const keys = union(Object.keys(obj1), Object.keys(obj2)) const newObj = {} as any for (const key of keys) { newObj[key] = (obj1[key] ?? 0) + (obj2[key] ?? 0) } return newObj as T }