starry.find
v4.0.0
Published
Member of the starry suite—modular functions for iterable objects.
Downloads
107
Maintainers
Readme
Member of the starry suite—modular functions for iterable objects.
Status
Applies to the whole suite.
Usage
function find<T = any>(
iterable: Iterable<T>,
predicate: (item: T) => boolean
)Returns the first element in the iterable that satisfies the predicate.
Returns undefined if no element satisfies the predicate.
Parameters:
- iterable:
Iterable<T> - predicate:
(T) => boolean
Returns: T | undefined
