()
| 51 | } |
| 52 | |
| 53 | function flush(): unknown { |
| 54 | if (timerId !== undefined || maxTimerId !== undefined) { |
| 55 | return invokeFunc(); |
| 56 | } |
| 57 | return callbackReturnValue; |
| 58 | } |
| 59 | |
| 60 | function debounced(): unknown { |
| 61 | if (timerId) { |
nothing calls this directly
no test coverage detected