Move a value from one path to another in the document.
void move(String fromSelector, String toSelector) { copy(fromSelector, toSelector); remove(fromSelector); }