(path: string)
| 6 | const execFilePromise = util.promisify(execFile) |
| 7 | |
| 8 | const exists = (path: string) => |
| 9 | access(path) |
| 10 | .then(() => true) |
| 11 | .catch(() => false) |
| 12 | |
| 13 | export function checkAppExists(appName: string) { |
| 14 | if (process.platform === "win32") return true |
no test coverage detected