TenantAtlas/apps/platform/.pnpm-store/v10/files/d7/089fe75c79099009456cdd1b26d066db26beab485b7bff9d3177a735e583c408db2ad94be854775007dd3cc8ff65b1be7f85ed833a47d3c2b11ccc5118a04e
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
407 B
Plaintext

import { argsOrArgArray } from '../util/argsOrArgArray';
import { onErrorResumeNext as oERNCreate } from '../observable/onErrorResumeNext';
export function onErrorResumeNextWith(...sources) {
const nextSources = argsOrArgArray(sources);
return (source) => oERNCreate(source, ...nextSources);
}
export const onErrorResumeNext = onErrorResumeNextWith;
//# sourceMappingURL=onErrorResumeNextWith.js.map