You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
509 B
11 lines
509 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.partition = void 0;
|
|
var not_1 = require("../util/not");
|
|
var filter_1 = require("../operators/filter");
|
|
var innerFrom_1 = require("./innerFrom");
|
|
function partition(source, predicate, thisArg) {
|
|
return [filter_1.filter(predicate, thisArg)(innerFrom_1.innerFrom(source)), filter_1.filter(not_1.not(predicate, thisArg))(innerFrom_1.innerFrom(source))];
|
|
}
|
|
exports.partition = partition;
|
|
//# sourceMappingURL=partition.js.map
|