* Determine if current platform is Windows (main process)
()
| 18 | * Determine if current platform is Windows (main process) |
| 19 | */ |
| 20 | function isWindowsPlatform(): boolean { |
| 21 | return platform === "win32"; |
| 22 | } |
| 23 | |
| 24 | function getSeparator(): string { |
| 25 | return isWindowsPlatform() ? "\\" : "/"; |
no outgoing calls
no test coverage detected