frontend/.pnpm-store/v3/files/ec/6b1ae0a18ebe318f4daba4b6424e31145982f5d3f9aee160cdd87307c37a744c4cfce7c3d053578c5f9c13491c8d41f7561f7b172678e5a24d3eeb2890fb86

11 lines
382 B
Plaintext

import { raceInit } from '../observable/race';
import { operate } from '../util/lift';
import { identity } from '../util/identity';
export function raceWith(...otherSources) {
return !otherSources.length
? identity
: operate((source, subscriber) => {
raceInit([source, ...otherSources])(subscriber);
});
}
//# sourceMappingURL=raceWith.js.map