aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/startWith.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/startWith.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/startWith.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/startWith.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/startWith.js
deleted file mode 100644
index fd72f0c6..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/startWith.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-var concat_1 = require("../observable/concat");
-var isScheduler_1 = require("../util/isScheduler");
-function startWith() {
- var array = [];
- for (var _i = 0; _i < arguments.length; _i++) {
- array[_i] = arguments[_i];
- }
- var scheduler = array[array.length - 1];
- if (isScheduler_1.isScheduler(scheduler)) {
- array.pop();
- return function (source) { return concat_1.concat(array, source, scheduler); };
- }
- else {
- return function (source) { return concat_1.concat(array, source); };
- }
-}
-exports.startWith = startWith;
-//# sourceMappingURL=startWith.js.map \ No newline at end of file