Start retry loop after parent observable throws error.
Delay will be increase and randomize with jitter before every iteration.
If parent observable passed success, then accumulated delay will be reset, and have not influence on next produced item.
yarn add rxjs-exponential-backoff-retry
defer(fetch('https://google.com'))
.pipe(
exponentialBackoffRetry()
);