* @param {string} relPath * @returns {string}
(relPath)
| 10 | * @returns {string} |
| 11 | */ |
| 12 | function winProgramFiles(relPath) { |
| 13 | const x64Path = path.join(process.env.PROGRAMFILES, relPath); |
| 14 | if (fs.existsSync(x64Path)) { |
| 15 | return x64Path; |
| 16 | } |
| 17 | return path.join(process.env['ProgramFiles(x86)'], relPath); |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * @param {string} app |
no outgoing calls
no test coverage detected
searching dependent graphs…