You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
419 B

4 years ago
import { isArray } from '../util/isArray';
import { race as raceStatic } from '../observable/race';
export function race(...observables) {
return function raceOperatorFunction(source) {
if (observables.length === 1 && isArray(observables[0])) {
observables = observables[0];
}
return source.lift.call(raceStatic(source, ...observables));
};
}
//# sourceMappingURL=race.js.map