lodash.get allows for something like this: ```js get(obj, 'foo[0]') ``` which would correspond to: ```js obj = { foo: [ 'x' // <- ], } ``` Any chance this could be supported in dlv as well?
lodash.get allows for something like this:
which would correspond to:
Any chance this could be supported in dlv as well?