-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
Is there a way to set/modify an existing value with this?
var tee = {
a: "hello",
b: {
b1: "goodbye",
b2: "so long",
b3: "adios"
}
}
dot.update("tee.b.b2", tee, "good riddance");
// yield
{
a: "hello",
b: {
b1: "goodbye",
b2: "good riddance",
b3: "adios"
}
}
Is this possible, or something like it?
Metadata
Metadata
Assignees
Labels
No labels