This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/rxjs/internal/operators/partition.js

12 lines
426 B
JavaScript

"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