JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour
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); }