source: trip-planner-front/node_modules/rxjs/internal/operators/partition.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 426 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var not_1 = require("../util/not");
4var filter_1 = require("./filter");
5function partition(predicate, thisArg) {
6 return function (source) { return [
7 filter_1.filter(predicate, thisArg)(source),
8 filter_1.filter(not_1.not(predicate, thisArg))(source)
9 ]; };
10}
11exports.partition = partition;
12//# sourceMappingURL=partition.js.map
Note: See TracBrowser for help on using the repository browser.