sampleTime.js 253 B

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