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