123456789101112 |
-
- import { not } from '../util/not';
- import { filter } from './filter';
- export function partition(predicate, thisArg) {
- return function (source) {
- return [
- filter(predicate, thisArg)(source),
- filter(not(predicate, thisArg))(source)
- ];
- };
- }
|