TenantAtlas/apps/platform/.pnpm-store/v10/files/e5/a73bd199be44dad1b8d3702a641482a22ea107486f61161fe8c592cf17a8b6ddb778b7d93580882c8eae476148a25123e22fb39934f790ce048deba0d1888a
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

12 lines
306 B
Plaintext

import { operate } from '../util/lift';
export function finalize(callback) {
return operate(function (source, subscriber) {
try {
source.subscribe(subscriber);
}
finally {
subscriber.add(callback);
}
});
}
//# sourceMappingURL=finalize.js.map