mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
7 lines
212 B
TypeScript
7 lines
212 B
TypeScript
export function isMacOS() {
|
|
const userAgent = navigator.userAgent.toLowerCase();
|
|
return userAgent.includes('macintosh') || userAgent.includes('mac os');
|
|
}
|
|
|
|
export const deviceAlt = isMacOS() ? '⌥' : 'Alt';
|