From 72eddef76c2390c1acbd0551c2a865f1b875a7c8 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Mon, 18 Nov 2024 18:15:55 +0100 Subject: [PATCH] Add reject doc to `asyncFilter` --- src/utils/arrays.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/arrays.ts b/src/utils/arrays.ts index 82b54e9df6..da8157adce 100644 --- a/src/utils/arrays.ts +++ b/src/utils/arrays.ts @@ -352,6 +352,7 @@ export async function asyncSomeParallel( /** * Async version of Array.filter. + * If one of the promises rejects, the whole operation will reject. * @param values * @param predicate */