1
0

utils.ts 262 B

123456789
  1. import _ from 'lodash-es';
  2. /**
  3. * 功能类似 lodash.get 但是当取值为 null 时也直接返回默认值
  4. */
  5. export const get: typeof _.get = (o, p, defaultValue = '/') => {
  6. const d = _.get(o, p, defaultValue);
  7. return d === null ? defaultValue : d;
  8. };