Press n or j to go to the next uncovered block, b, p or k for the previous block.
// Call a handler once for each axis export function eachAxis<T>(handler: (axis: "x" | "y") => T): T[] { return [handler("x"), handler("y")] }