json / src /lib /utils /graph /getNextDirection.ts
xinnni's picture
Upload 146 files
f909d7c verified
raw
history blame contribute delete
228 Bytes
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";
}