/
githubmirror
/
tldraw
Обзор
Документация
Войти
/
githubmirror
/
tldraw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/editor/src/lib/utils/keyboard.ts
10 строк
350 B
Steve Ruiz
refactor(editor): clean up editor utility files (#7940)
15 фев 2026, 12:14
Не верифицирован
15 фев 2026, 12:14
1f0521a
Код
Авторство
О чём код?
import { tlenv } from '../globals/environment' /** * Checks if the accelerator key is pressed. * @param e - The event to check. * @returns True if the accelerator key is pressed, false otherwise. * @internal */ export function isAccelKey(e: { metaKey: boolean; ctrlKey: boolean }) { return tlenv.isDarwin ? e.metaKey : e.ctrlKey || e.metaKey }