import { get } from "lodash"; export const pathOr = (defaultValue, path, record) => { return get(record, path, defaultValue); };