()
| 1813 | exports.deferredCall = function(fcn) { |
| 1814 | var timer = null; |
| 1815 | var callback = function() { |
| 1816 | timer = null; |
| 1817 | fcn(); |
| 1818 | }; |
| 1819 | |
| 1820 | var deferred = function(timeout) { |
| 1821 | deferred.cancel(); |
no outgoing calls
no test coverage detected