(p: string)
| 11 | const NOTE_COMMENTS_SUFFIX = '.comments.json' |
| 12 | |
| 13 | function toPosix(p: string): string { |
| 14 | return p.split(path.sep).join('/') |
| 15 | } |
| 16 | |
| 17 | function folderOf(root: string, abs: string): NoteFolder | null { |
| 18 | const rel = toPosix(path.relative(root, abs)) |
no outgoing calls
no test coverage detected