(key: string)
| 183 | } |
| 184 | |
| 185 | function clearRetryTimeout(key: string) { |
| 186 | const t = retryTimeouts.get(key) |
| 187 | if (t) clearTimeout(t) |
| 188 | retryTimeouts.delete(key) |
| 189 | } |
| 190 | |
| 191 | function clearRetryState(key: string) { |
| 192 | clearRetryTimeout(key) |
no test coverage detected