Press n or j to go to the next uncovered block, b, p or k for the previous block.
export const change = (i: number) => (input: number) => i + input; export const increment = change(1); export const decrement = change(-1);