firstElementAsync() Function
Returns the first element in array
whose value satisfies the predicate
.
Signature
export declare function firstElementAsync<T>(array: readonly T[], predicate: (value: T, index: number, array: readonly T[]) => PromiseLike<boolean>): Promise<T | undefined>;
Parameters
Parameter | Type | Description |
---|---|---|
array | readonly T[] | The array to search. |
predicate | (value: T, index: number, array: readonly T[]) => PromiseLike<boolean> | A predicate. There should exist some index |
(Returns) | Promise<T | undefined> | A promise that resolves to the first element in |