Last change
on this file since fa375fe 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";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | var not_1 = require("../util/not");
|
---|
4 | var filter_1 = require("./filter");
|
---|
5 | function 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 | }
|
---|
11 | exports.partition = partition;
|
---|
12 | //# sourceMappingURL=partition.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.