MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / findChromeExecutable

Function findChromeExecutable

common/src/util/system-info.ts:34–40  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32}
33
34export const findChromeExecutable = (): string | null => {
35 const paths = CHROME_PATHS[platform] ?? []
36 for (const p of paths) {
37 if (p && fs.existsSync(p)) return p
38 }
39 return null
40}
41
42export const getSystemInfo = (processEnv: ProcessEnv = getProcessEnv()) => {
43

Callers 1

getSystemInfoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected