aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/subscribeToArray.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/subscribeToArray.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/subscribeToArray.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/subscribeToArray.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/subscribeToArray.js
new file mode 100644
index 00000000..029c2327
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/subscribeToArray.js
@@ -0,0 +1,9 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.subscribeToArray = function (array) { return function (subscriber) {
+ for (var i = 0, len = array.length; i < len && !subscriber.closed; i++) {
+ subscriber.next(array[i]);
+ }
+ subscriber.complete();
+}; };
+//# sourceMappingURL=subscribeToArray.js.map \ No newline at end of file