(str: string)
| 375 | * @param str String to fix |
| 376 | */ |
| 377 | export function fixSlashes(str: string): string { |
| 378 | return str.replace(/\\/g, '/'); |
| 379 | } |
| 380 | |
| 381 | /** |
| 382 | * Checks whether we can write and read to a folder |
no outgoing calls
no test coverage detected