blob: a3fd144206a14b0d34467f9e9b493d8f662833ff (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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
|