()
| 16 | }; |
| 17 | |
| 18 | export function cancelTodoAutoClear() { |
| 19 | if (!todoState.clearTimer) return; |
| 20 | clearTimeout(todoState.clearTimer); |
| 21 | todoState.clearTimer = null; |
| 22 | } |
| 23 | |
| 24 | export function clearTodoBatch() { |
| 25 | cancelTodoAutoClear(); |
no outgoing calls
no test coverage detected