timeInterval.js 288 B

1234567
  1. import { asyncScheduler } from 'rxjs';
  2. import { timeInterval as higherOrder } from 'rxjs/operators';
  3. export function timeInterval(scheduler) {
  4. if (scheduler === void 0) { scheduler = asyncScheduler; }
  5. return higherOrder(scheduler)(this);
  6. }
  7. //# sourceMappingURL=timeInterval.js.map