(path: string)
| 9 | * @returns A path with spaces escaped |
| 10 | */ |
| 11 | export function escapeSpaces(path: string): string { |
| 12 | return path.replace(/ /g, "\\ ") |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Converts an absolute path to a mention-friendly path |
no test coverage detected