()
| 542 | function delayedCall(fcn, defaultTimeout) { |
| 543 | var timer, |
| 544 | callback = function() { |
| 545 | timer = null; |
| 546 | fcn(); |
| 547 | }, |
| 548 | |
| 549 | _self = function(timeout) { |
| 550 | if (!timer) |
no outgoing calls
no test coverage detected
searching dependent graphs…