TenantAtlas/apps/platform/.pnpm-store/v10/files/ae/0db935d2762857cc9d9e513baadd90311f5efbfd2d049cc074ec88d124ade460a526766db7ee3bb0ffb3ef15d03ba64b1a482079a914ab6f22b30856cc99a7
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

6 lines
214 B
Plaintext

import { concat } from '../observable/concat';
import { of } from '../observable/of';
export function endWith(...values) {
return (source) => concat(source, of(...values));
}
//# sourceMappingURL=endWith.js.map