UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

8 lines 205 B
import get from 'lodash/get'; export default (function (value, path) { if (typeof value === 'object') { return get(value, path); } return value; }); //# sourceMappingURL=getValue.js.map