UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

10 lines (8 loc) 274 B
import { repeatValue } from '../repeatvalue'; import { catchAll } from '../catcherror'; export function retry(count = -1) { return function retryOperatorFunction(source) { return catchAll(repeatValue(source, count)); }; } //# sourceMappingURL=retry.mjs.map