mirror of
https://github.com/outline/outline.git
synced 2026-01-04 01:59:49 -06:00
7 lines
237 B
TypeScript
7 lines
237 B
TypeScript
const SSR = typeof window === "undefined";
|
|
const isMac = !SSR && window.navigator.platform === "MacIntel";
|
|
|
|
export default function isModKey(event: KeyboardEvent | MouseEvent): boolean {
|
|
return isMac ? event.metaKey : event.ctrlKey;
|
|
}
|