sampleTime.js 292 B

1234567
  1. import { asyncScheduler } from '../scheduler/async';
  2. import { sample } from './sample';
  3. import { interval } from '../observable/interval';
  4. export function sampleTime(period, scheduler = asyncScheduler) {
  5. return sample(interval(period, scheduler));
  6. }
  7. //# sourceMappingURL=sampleTime.js.map