(num)
| 64 | }, |
| 65 | |
| 66 | refreshInterval(num) { |
| 67 | typecheck('number', 'refreshInterval', num) |
| 68 | invariant(num >= 0, 'refreshInterval must be positive or 0.') |
| 69 | invariant(num !== Infinity, 'refreshInterval must not be Infinity.') |
| 70 | }, |
| 71 | |
| 72 | Request(fn) { |
| 73 | typecheck('function', 'Request', fn) |
nothing calls this directly
no test coverage detected
searching dependent graphs…