timeInterval.js 243 B

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