fix arrows

This commit is contained in:
Jack 2022-03-25 20:10:20 +08:00 committed by GitHub
parent c681828ec1
commit 57b59de9be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,9 +5,9 @@ export function random(min: number, max: number): number {
} }
export const upArrowSymbol = "↑"; export const upArrowSymbol = "↑";
export const downArrowSymbol = ""; export const downArrowSymbol = "";
export const leftArrowSymbol = ""; export const leftArrowSymbol = "";
export const rightArrowSymbol = ""; export const rightArrowSymbol = "";
export function getArrow(event: KeyboardEvent): string { export function getArrow(event: KeyboardEvent): string {
switch (event.key) { switch (event.key) {