TenantAtlas/apps/platform/.pnpm-store/v10/files/bb/3bb57ca3850ea29446a004e7bbbbcaee2d4afef6f7cb9a30fd6c09ad5a4b26dbded4e2a50bb1f3a8cd81b7b9b6c957484ab156e7583e1d112062c956a1b6d2
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

8 lines
352 B
Plaintext

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