frontend/.pnpm-store/v3/files/3d/0b136419f865734c5da05019a6ba7b8a63e6fc5a5f2d8229eb4160648d7723b97c07394721b20c6897ecc9b8233d8d81e2d784b110eee38dfd7c309b75bb63

13 lines
385 B
Plaintext

/** PURE_IMPORTS_START _util_not,_filter PURE_IMPORTS_END */
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