UNPKG

235 BJavaScriptView Raw
1import { filter } from './filter';
2export function partition(source, predicate, thisArg) {
3 return [filter(source, predicate, thisArg), filter(source, (x, i) => !predicate(x, i), thisArg)];
4}
5
6//# sourceMappingURL=partition.mjs.map