debug-server-next
Version:
Dev server for hippy-core.
14 lines (13 loc) • 426 B
JavaScript
// Copyright (c) 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export const ESCAPE_KEY = 'Escape';
export const ARROW_KEYS = new Set([
"ArrowUp" /* UP */,
"ArrowDown" /* DOWN */,
"ArrowLeft" /* LEFT */,
"ArrowRight" /* RIGHT */,
]);
export function keyIsArrowKey(key) {
return ARROW_KEYS.has(key);
}