(line: string)
| 323 | * line. Co-located so format changes here and in addLineNumbers stay in sync. |
| 324 | */ |
| 325 | export function stripLineNumberPrefix(line: string): string { |
| 326 | const match = line.match(/^\s*\d+[\u2192\t](.*)$/) |
| 327 | return match?.[1] ?? line |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Checks if a directory is empty. |
nothing calls this directly
no outgoing calls
no test coverage detected