retry.js 163 B

12345
  1. import { retry as higherOrder } from 'rxjs/operators';
  2. export function retry(count = -1) {
  3. return higherOrder(count)(this);
  4. }
  5. //# sourceMappingURL=retry.js.map