An aysnc implementation of Array.some(). Returns as soon as a match is found.
aysnc
Array.some()
The items to check.
The async matcher function, expected to return Promise: true for a matching item, false otherwise.
true
false
A Promise<boolean>, true if "some" items match; false otherwise.
Promise<boolean>
An
aysnc
implementation ofArray.some()
. Returns as soon as a match is found.