/** * @license * Copyright 2023 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ export { bufferCount, catchError, combineLatest, concat, concatMap, debounceTime, defaultIfEmpty, defer, delay, EMPTY, filter, first, firstValueFrom, forkJoin, from, fromEvent, identity, ignoreElements, lastValueFrom, map, merge, mergeMap, mergeScan, NEVER, noop, Observable, of, pipe, race, raceWith, ReplaySubject, retry, startWith, switchMap, take, takeUntil, tap, throwIfEmpty, timer, zip, } from 'rxjs'; export type * from 'rxjs'; import {filter, from, map, mergeMap, type Observable} from 'rxjs'; export function filterAsync( predicate: (value: T) => boolean | PromiseLike ) { return mergeMap>(value => { return from(Promise.resolve(predicate(value))).pipe( filter(isMatch => { return isMatch; }), map(() => { return value; }) ); }); }