Your IP : 216.73.216.158


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/rxjs/dist/esm/internal/operators/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/rxjs/dist/esm/internal/operators/throttleTime.js

import { asyncScheduler } from '../scheduler/async';
import { defaultThrottleConfig, throttle } from './throttle';
import { timer } from '../observable/timer';
export function throttleTime(duration, scheduler = asyncScheduler, config = defaultThrottleConfig) {
    const duration$ = timer(duration, scheduler);
    return throttle(() => duration$, config);
}
//# sourceMappingURL=throttleTime.js.map