(filePath: string)
| 71 | } |
| 72 | |
| 73 | function resolveRealPath(filePath: string): string { |
| 74 | try { |
| 75 | return fs.realpathSync.native(filePath); |
| 76 | } catch { |
| 77 | return path.resolve(filePath); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | export function resolveDaemonServerMode(raw: string | undefined): DaemonServerMode { |
| 82 | const normalized = (raw ?? '').trim().toLowerCase(); |
no outgoing calls
no test coverage detected
searching dependent graphs…