()
| 631 | * Stop background polling for remote settings |
| 632 | */ |
| 633 | export function stopBackgroundPolling(): void { |
| 634 | if (pollingIntervalId !== null) { |
| 635 | clearInterval(pollingIntervalId) |
| 636 | pollingIntervalId = null |
| 637 | } |
| 638 | } |
| 639 |
no outgoing calls
no test coverage detected