hugoWebsite/node_modules/rxjs/dist/esm/internal/operators/partition.js

6 lines
259 B
JavaScript
Raw Normal View History

2022-10-29 00:20:35 +02:00
import { not } from '../util/not';
import { filter } from './filter';
export function partition(predicate, thisArg) {
return (source) => [filter(predicate, thisArg)(source), filter(not(predicate, thisArg))(source)];
}
//# sourceMappingURL=partition.js.map