add more robust util fn

This commit is contained in:
James
2025-12-22 12:40:56 -05:00
parent 64bf02d59c
commit 3c48b2ceb7
2 changed files with 11 additions and 4 deletions

View File

@@ -52,3 +52,13 @@ export function pathsEqual(p1: string | undefined | null, p2: string | undefined
if (!p1 || !p2) return p1 === p2;
return normalizePath(p1) === normalizePath(p2);
}
/**
* Detect if running on macOS.
* Checks Electron process.platform first, then falls back to navigator APIs.
*/
export const isMac =
typeof process !== 'undefined' && process.platform === 'darwin'
? true
: typeof navigator !== 'undefined' &&
(/Mac/.test(navigator.userAgent) || navigator.platform?.toLowerCase().includes('mac'));