import { get } from 'lodash-es' import { Item } from '../../types/Item' export function get_value( item: T, key: string, process?: (value: any) => any, ) { let value = get(item, key) if (process) { value = process(value) } return value }