()
| 1836 | exports.deferredCall = function(fcn) { |
| 1837 | var timer = null; |
| 1838 | var callback = function() { |
| 1839 | timer = null; |
| 1840 | fcn(); |
| 1841 | }; |
| 1842 | |
| 1843 | var deferred = function(timeout) { |
| 1844 | deferred.cancel(); |
no outgoing calls
no test coverage detected