(env: NodeJS.ProcessEnv)
| 1191 | } |
| 1192 | |
| 1193 | function resolveUserName(env: NodeJS.ProcessEnv): string { |
| 1194 | return normalizeString(env.USER) || normalizeString(env.LOGNAME) || os.userInfo().username; |
| 1195 | } |
| 1196 | |
| 1197 | function findCommandOnPath( |
| 1198 | platform: NodeJS.Platform, |
no test coverage detected