Skip to content

move

move to=from, …

Moves from the field from to the field to.

The field to move into.

The field to move from.

from {x: 1, y: 2}
move z=y, w.x=x
{
z: 2,
w: {
x: 1,
},
}

set