()
| 490 | return function() { |
| 491 | var context = this, args = arguments; |
| 492 | var later = function() { |
| 493 | timeout = null; |
| 494 | if (!immediate) func.apply(context, args); |
| 495 | }; |
| 496 | var callNow = immediate && !timeout; |
| 497 | clearTimeout(timeout); |
| 498 | timeout = setTimeout(later, wait); |
nothing calls this directly
no outgoing calls
no test coverage detected