()
| 78 | return function() { |
| 79 | var context = this, args = arguments; |
| 80 | var later = function() { |
| 81 | timeout = null; |
| 82 | func.apply(context, args); |
| 83 | }; |
| 84 | |
| 85 | clearTimeout(timeout); |
| 86 | timeout = setTimeout(later, wait); |
nothing calls this directly
no outgoing calls
no test coverage detected