芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/rxjs/_esm2015/internal/operators/partition.js
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