mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 00:13:53 +00:00
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
export function isMacOS() {
|
|
const userAgent = navigator.userAgent.toLowerCase();
|
|
return userAgent.includes('macintosh') || userAgent.includes('mac os');
|
|
}
|
|
|
|
export const deviceAlt = isMacOS() ? 'Option' : 'Alt';
|
|
|
|
export const deviceMod = isMacOS() ? 'Cmd' : 'Ctrl';
|