Ohm-Management - Projektarbeit B-ME
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.

race.js 419B

1234567891011
  1. import { isArray } from '../util/isArray';
  2. import { race as raceStatic } from '../observable/race';
  3. export function race(...observables) {
  4. return function raceOperatorFunction(source) {
  5. if (observables.length === 1 && isArray(observables[0])) {
  6. observables = observables[0];
  7. }
  8. return source.lift.call(raceStatic(source, ...observables));
  9. };
  10. }
  11. //# sourceMappingURL=race.js.map