(path: string)
| 244 | const platform = process.platform; |
| 245 | const env = process.env as Record<string, string | undefined>; |
| 246 | const isFile = async (path: string): Promise<boolean> => { |
| 247 | try { |
| 248 | await access(path, fsConstants.F_OK); |
| 249 | return true; |
| 250 | } catch { |
| 251 | return false; |
| 252 | } |
| 253 | }; |
| 254 | detectedEnvironment = detectEnvironment({ |
| 255 | platform, |
| 256 | arch: process.arch, |
no outgoing calls
no test coverage detected