Skip to main content
Version: v5.0

move

move to=from, ...

Description

Moves the values

to: field

The field to move into.

from: field

The field to move from.

Examples

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