TenantAtlas/apps/platform/.pnpm-store/v10/files/b2/94cf85aca4199c2d86b33a31237c16d5c93a111065c5f0134040a9aa267188e30d655b98b7c9ad271e0e5dab60892aa9289ccb8c2d342e1162662d89f456e3
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

9 lines
413 B
Plaintext

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