UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

6 lines 253 B
import { asyncScheduler } from 'rxjs'; import { sampleTime as higherOrder } from 'rxjs/operators'; export function sampleTime(period, scheduler = asyncScheduler) { return higherOrder(period, scheduler)(this); } //# sourceMappingURL=sampleTime.js.map