repeat.js 166 B

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