()
| 20962 | return !!timeoutId; |
| 20963 | }; |
| 20964 | var cancel = function() { |
| 20965 | if (pending()) // Mark the debounced function as having executed |
| 20966 | markExecuted(Date.now()); |
| 20967 | }; |
| 20968 | var flush = function() { |
| 20969 | if (pending()) invokeFunction(Date.now()); |
| 20970 | return lastResult; |
nothing calls this directly
no test coverage detected