diff options
Diffstat (limited to 'node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js')
| -rw-r--r-- | node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js b/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js new file mode 100644 index 0000000..a3fd144 --- /dev/null +++ b/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js @@ -0,0 +1,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
\ No newline at end of file |
