Files
powerpoint-toolbox/node_modules/rxjs/_esm2015/internal/operators/partition.js
T
2025-03-07 19:22:02 +01:00

9 lines
281 B
JavaScript

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