(method)
| 414 | } |
| 415 | |
| 416 | function guardedConsole(method) { |
| 417 | /* istanbul ignore else */ |
| 418 | if (typeof console !== 'undefined' && typeof console[method] === 'function') { |
| 419 | var args = Array.prototype.slice.call(arguments, 1); |
| 420 | console[method].apply(console, args); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | function randomNumber(min, max) { |
| 425 | var maxTimeout = 600000; // Hard-coded default of 10 minutes |
no outgoing calls
no test coverage detected
searching dependent graphs…