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