(path: Path.Path)
| 73 | // --------------------------------------------------------------------------- |
| 74 | |
| 75 | const resolveDaemonDataDir = (path: Path.Path): string => |
| 76 | process.env.EXECUTOR_DATA_DIR ?? path.join(homedir(), ".executor"); |
| 77 | |
| 78 | const sanitizeHostForPath = (hostname: string): string => |
| 79 | hostname.replaceAll(/[^a-z0-9.-]+/gi, "_"); |
no outgoing calls
no test coverage detected