(name: string)
| 30 | } |
| 31 | |
| 32 | function sidecarLogFile(name: string): string { |
| 33 | const safe = (name || 'sidecar').replace(/[^\w.-]+/g, '_') |
| 34 | return formatPath(netmountLogDir() + `/sidecar-${safe}.log`, osInfo.platform === 'windows') |
| 35 | } |
| 36 | |
| 37 | export { |
| 38 | defaultCacheDir, |
no test coverage detected