(path: Path.Path, input: { hostname: string; port: number })
| 81 | createHash("sha256").update(scopeId).digest("hex").slice(0, 24); |
| 82 | |
| 83 | const daemonRecordPath = (path: Path.Path, input: { hostname: string; port: number }): string => { |
| 84 | const host = sanitizeHostForPath(canonicalDaemonHost(input.hostname)); |
| 85 | return path.join(resolveDaemonDataDir(path), `daemon-${host}-${input.port}.json`); |
| 86 | }; |
| 87 | |
| 88 | const daemonPointerPath = ( |
| 89 | path: Path.Path, |
no test coverage detected