@alanscodelog/utils
    Preparing search index...

    Function get

    • A dead simple, no frills get function.

      const obj = { a: { b: ["c"]} }
      const value = get(obj, ["a", "b", 0])
      const value = get(obj, []) // undefined

      Parameters

      • obj: any
      • keys: (string | number)[]

      Returns any