(hostname: 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, "_"); |
| 80 | const scopeKeyForPath = (scopeId: string): string => |
| 81 | createHash("sha256").update(scopeId).digest("hex").slice(0, 24); |
| 82 |
no outgoing calls
no test coverage detected