(oldValue: Schema.Json, newValue: Schema.Json)
| 178 | * @since 4.0.0 |
| 179 | */ |
| 180 | export function get(oldValue: Schema.Json, newValue: Schema.Json): JsonPatch { |
| 181 | const patches: Array<JsonPatchOperation> = [] |
| 182 | getLoop(oldValue, newValue, "", patches) |
| 183 | return patches |
| 184 | } |
| 185 | |
| 186 | function getLoop( |
| 187 | oldValue: Schema.Json, |