frontend/.pnpm-store/v3/files/8e/6cbd88517c99c2090f65bdeaa84309fe1d90332aeb242093a11d0ceed94a07b0e82beea56eb0e2e46cffaacc630fb62c214d8365817900ab276dcddeca6723

8 lines
289 B
Plaintext

import { not } from '../util/not';
import { filter } from './filter';
export function partition(predicate, thisArg) {
return function (source) {
return [filter(predicate, thisArg)(source), filter(not(predicate, thisArg))(source)];
};
}
//# sourceMappingURL=partition.js.map