TenantAtlas/apps/platform/.pnpm-store/v10/files/34/aa528ddb2421929559c4a426eeb836d2a4c165cbe2064d86acd62b89177948bd7b568f06db1dad4f4395235d04606fcb98ebe6ae3282c6b08738819b70002d
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
284 B
Plaintext

import { asyncScheduler } from '../scheduler/async';
import { timer } from './timer';
export function interval(period = 0, scheduler = asyncScheduler) {
if (period < 0) {
period = 0;
}
return timer(period, period, scheduler);
}
//# sourceMappingURL=interval.js.map