Your IP : 216.73.216.43


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/rxjs/dist/esm5/internal/operators/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/rxjs/dist/esm5/internal/operators/partition.js

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