UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

11 lines 419 B
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