retryWhen.js 176 B

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