repeat.js 203 B

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