7 lines
234 B
JavaScript
7 lines
234 B
JavaScript
export const isMac = /mac|iPhone|iPad|iPod/i.test(window.navigator.platform);
|
||
|
||
// On macOS it’s more natural to use the Command key for shortcuts.
|
||
export function isCtrlKey(event) {
|
||
return isMac ? event.metaKey : event.ctrlKey;
|
||
}
|