Function getNestedValue

根据路径获取嵌套对象的值

const obj = { a: { b: { c: 1 } } }
getNestedValue(obj, 'a.b.c') // 1
  • Parameters

    • obj: Record<string, any>

      数据对象

    • path: string

      路径

    Returns any