(state: State)
| 153 | } |
| 154 | |
| 155 | function processDown(state: State) { |
| 156 | state.dateParts[state.cursor].decrement() |
| 157 | return Action.NextFrame({ |
| 158 | state: { ...state, typed: "" } |
| 159 | }) |
| 160 | } |
| 161 | |
| 162 | function processCursorLeft(state: State) { |
| 163 | const previousPart = state.dateParts[state.cursor].previousPart() |
no test coverage detected
searching dependent graphs…