-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
I'm trying to convert an object to dot notation with dot.dot by running
const target = dot.dot({
a: 1,
b: 2,
c: {
d: 3,
e: {
f: 4,
},
},
})Expected result
{
a: 1,
b: 2,
'c.d': 3,
'c.e.f': 4,
}But when i'm logging target it always result in the default object, nothing happens.
I'm using version 2.1.4.
Metadata
Metadata
Assignees
Labels
No labels