An aysnc implementation of Array.every(). Returns as soon as a non-match is found.
aysnc
Array.every()
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 every item matches; false otherwise.
Promise<boolean>
An
aysnc
implementation ofArray.every()
. Returns as soon as a non-match is found.