(path: string)
| 198 | } |
| 199 | |
| 200 | export function patchRemove(path: string): JsonPatchOp { |
| 201 | return { op: "remove", path }; |
| 202 | } |
| 203 | |
| 204 | /** Emit forward (replace or add) + inverse (replace or remove) for a scalar change. */ |
| 205 | export function scalarChange( |
no outgoing calls
no test coverage detected