13 lines
611 B
Plaintext
13 lines
611 B
Plaintext
import { __read, __spreadArray } from "tslib";
|
|
import { argsOrArgArray } from '../util/argsOrArgArray';
|
|
import { onErrorResumeNext as oERNCreate } from '../observable/onErrorResumeNext';
|
|
export function onErrorResumeNextWith() {
|
|
var sources = [];
|
|
for (var _i = 0; _i < arguments.length; _i++) {
|
|
sources[_i] = arguments[_i];
|
|
}
|
|
var nextSources = argsOrArgArray(sources);
|
|
return function (source) { return oERNCreate.apply(void 0, __spreadArray([source], __read(nextSources))); };
|
|
}
|
|
export var onErrorResumeNext = onErrorResumeNextWith;
|
|
//# sourceMappingURL=onErrorResumeNextWith.js.map |