JzonElement fromEl = factory.wrap(from);
JzonElement toEl = factory.wrap(to);
JzonObject diff = diff(fromEl, toEl);
return diff.unwrap();
}
/**
* Runs a diff on the two given JSON objects given as string to produce another JSON object with instructions of how to transform the first argument to the second. Both from/to
* are expected to be objects {}.