()
| 16305 | var context, args, timeout, result; |
| 16306 | var previous = 0; |
| 16307 | var later = function() { |
| 16308 | previous = new Date; |
| 16309 | timeout = null; |
| 16310 | result = func.apply(context, args); |
| 16311 | }; |
| 16312 | return function() { |
| 16313 | var now = new Date; |
| 16314 | var remaining = wait - (now - previous); |
nothing calls this directly
no outgoing calls
no test coverage detected