This example
import { get } from 'lodash';
const obj = { a: { b: { c: { d: 1 }}}};
const path = ['a','b','c','d'];
get(obj, path);
Turns into:
const obj = { a: { b: { c: { d: 1 }}}};
const path = ['a','b','c','d'];
obj?.[path];
Which is incorrect, obv. Will try to do a follow-up PR to tackle this issue.