aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js
deleted file mode 100644
index ae96c716..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js
+++ /dev/null
@@ -1,12 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-var not_1 = require("../util/not");
-var filter_1 = require("./filter");
-function partition(predicate, thisArg) {
- return function (source) { return [
- filter_1.filter(predicate, thisArg)(source),
- filter_1.filter(not_1.not(predicate, thisArg))(source)
- ]; };
-}
-exports.partition = partition;
-//# sourceMappingURL=partition.js.map \ No newline at end of file