(overrides: NodeJS.ProcessEnv = {})
| 226 | } |
| 227 | |
| 228 | export function ghEnv(overrides: NodeJS.ProcessEnv = {}): NodeJS.ProcessEnv { |
| 229 | return ghCliEnv(overrides); |
| 230 | } |
| 231 | |
| 232 | export function ghErrorText(error: unknown): string { |
| 233 | if (!error || typeof error !== "object") return String(error ?? ""); |
no test coverage detected