aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js')
-rw-r--r--node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js b/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js
deleted file mode 100644
index ca881bd..0000000
--- a/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import { EmptyError } from '../util/EmptyError';
-import { operate } from '../util/lift';
-import { createOperatorSubscriber } from './OperatorSubscriber';
-export function throwIfEmpty(errorFactory = defaultErrorFactory) {
- return operate((source, subscriber) => {
- let hasValue = false;
- source.subscribe(createOperatorSubscriber(subscriber, (value) => {
- hasValue = true;
- subscriber.next(value);
- }, () => (hasValue ? subscriber.complete() : subscriber.error(errorFactory()))));
- });
-}
-function defaultErrorFactory() {
- return new EmptyError();
-}
-//# sourceMappingURL=throwIfEmpty.js.map \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage