Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 129x 9x | export type OpPatch = AddPatch | RemovePatch | ReplacePatch | MovePatch | CopyPatch | TestPatch;
export interface Patch {
path: string;
}
export interface AddPatch extends Patch {
op: "add";
value: any;
}
export interface RemovePatch extends Patch {
op: "remove";
}
export interface ReplacePatch extends Patch {
op: "replace";
value: any;
}
export interface MovePatch extends Patch {
op: "move";
from: string;
}
export interface CopyPatch extends Patch {
op: "copy";
from: string;
}
export interface TestPatch extends Patch {
op: "test";
value: any;
}
export function escapePath(path: string) {
return path.replace(/~/g, '~0').replace(/\//g, '~1');
}
|