()
| 427 | return function() { |
| 428 | var context = this, args = arguments; |
| 429 | var later = function() { |
| 430 | timeout = null; |
| 431 | if (!immediate) func.apply(context, args); |
| 432 | }; |
| 433 | var callNow = immediate && !timeout; |
| 434 | clearTimeout(timeout); |
| 435 | timeout = setTimeout(later, wait); |
nothing calls this directly
no outgoing calls
no test coverage detected