UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

25 lines (23 loc) 991 B
import { wrapWithAbort } from './operators/withabort'; import { throwIfAborted } from '../aborterror'; /** * Returns the first element of an async-iterable sequence that matches the predicate if provided, or undefined if no such element exists. * * @export * @template T The type of the elements in the source sequence. * @param {AsyncIterable<T>} source Source async-enumerable sequence. * @returns {(Promise<S | undefined>)} A Promise containing the first element in the async-iterable sequence, * or a default value if no such element exists. */ export async function first(source, options) { const { ['signal']: signal, ['thisArg']: thisArg, ['predicate']: predicate = async () => true } = options || {}; throwIfAborted(signal); let i = 0; for await (const item of wrapWithAbort(source, signal)) { if (await predicate.call(thisArg, item, i++, signal)) { return item; } } return undefined; } //# sourceMappingURL=first.mjs.map