Initial commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
import {
|
||||
__read,
|
||||
__spreadArray,
|
||||
argsOrArgArray,
|
||||
filter,
|
||||
not,
|
||||
raceWith
|
||||
} from "./chunk-2K3BB2X3.js";
|
||||
|
||||
// node_modules/rxjs/dist/esm5/internal/operators/partition.js
|
||||
function partition(predicate, thisArg) {
|
||||
return function(source) {
|
||||
return [filter(predicate, thisArg)(source), filter(not(predicate, thisArg))(source)];
|
||||
};
|
||||
}
|
||||
|
||||
// node_modules/rxjs/dist/esm5/internal/operators/race.js
|
||||
function race() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
return raceWith.apply(void 0, __spreadArray([], __read(argsOrArgArray(args))));
|
||||
}
|
||||
|
||||
export {
|
||||
partition,
|
||||
race
|
||||
};
|
||||
//# sourceMappingURL=chunk-UQGLAMHP.js.map
|
||||
Reference in New Issue
Block a user