File size: 228 Bytes
f909d7c
 
 
 
 
 
1
2
3
4
5
6
7
export function getNextDirection(direction: "LEFT" | "RIGHT" | "DOWN" | "UP") {
  if (direction === "RIGHT") return "DOWN";
  if (direction === "DOWN") return "LEFT";
  if (direction === "LEFT") return "UP";
  return "RIGHT";
}