repeatWhen.js 179 B

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