retry.js 200 B

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