JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "is-ctrl-or-shift-pressed.ts"

Full Path: /home/markqprx/iniasli.pro/client/utils/keybinds/is-ctrl-or-shift-pressed.ts
File size: 253 bytes
MIME-type: text/plain
Charset: utf-8

import {isCtrlKeyPressed} from './is-ctrl-key-pressed';

interface Event {
  altKey: boolean;
  ctrlKey: boolean;
  metaKey: boolean;
  shiftKey: boolean;
}

export function isCtrlOrShiftPressed(e: Event) {
  return e.shiftKey || isCtrlKeyPressed(e);
}