(root: string, rel: string)
| 2744 | } |
| 2745 | |
| 2746 | async function removeNoteComments(root: string, rel: string): Promise<void> { |
| 2747 | await fs.rm(noteCommentsPath(root, rel), { force: true }) |
| 2748 | } |
| 2749 | |
| 2750 | async function moveNoteComments(root: string, oldRel: string, nextRel: string): Promise<void> { |
| 2751 | const oldAbs = noteCommentsPath(root, oldRel) |
no test coverage detected