Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / operators / partition.js
1 import { not } from '../util/not';
2 import { filter } from './filter';
3 export function partition(predicate, thisArg) {
4     return (source) => [
5         filter(predicate, thisArg)(source),
6         filter(not(predicate, thisArg))(source)
7     ];
8 }
9 //# sourceMappingURL=partition.js.map