UNPKG

ice.fo.utils

Version:

10 lines (8 loc) 301 B
import _get from 'lodash/get'; export default function getLabel(o, defaultValue = '', path = '') { if (path) { const paths = path.split('.'); return _get(o, paths.concat('label')) || _get(o, paths) || defaultValue; } return (o && o.label !== undefined ? o.label : o) || defaultValue; }