lexys-labyrinth/js/editor/keyboard.js
2024-04-28 15:10:35 +02:00

7 lines
234 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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