frontend/.pnpm-store/v3/files/02/d178113ad60e7a9b9fb1865471ab081b806867957d1edad9fe0df208d15d018aab0b9a269805a1eff9d32999e161613148065d3c974579ab12b183eed2eac6

9 lines
281 B
Plaintext

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