const obj = { "a.b": { "c": 1 } }
There are cases when object keys already have a dot in the name. It would be nice to be able to escape the dot so that the split will pass through.
So
dlv(obj, 'a\.b.c') === 1 // true
There are cases when object keys already have a dot in the name.
It would be nice to be able to escape the dot so that the split will pass through.
So