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, 12 insertions, 0 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
new file mode 100644
index 00000000..ae96c716
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/partition.js
@@ -0,0 +1,12 @@
+"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