You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
128
128
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
* Tests whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
@@ -182,7 +181,6 @@ interface AnyByRightAsync {
182
181
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
183
182
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
184
183
*
185
-
*
186
184
* @param collection - input collection
187
185
* @param predicate - predicate function to invoke for each element in a collection
188
186
* @param done - function to invoke upon completion
* Returns a function for testing whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
@@ -232,7 +230,6 @@ interface AnyByRightAsync {
232
230
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
233
231
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
234
232
*
235
-
*
236
233
* @param options - function options
237
234
* @param options.thisArg - execution context
238
235
* @param options.limit - maximum number of pending invocations at any one time
* Returns a function for testing whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
@@ -296,7 +293,6 @@ interface AnyByRightAsync {
296
293
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
297
294
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
298
295
*
299
-
*
300
296
* @param predicate - predicate function to invoke for each element in a collection
301
297
* @returns function which invokes the predicate function once for each element in a collection
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
352
348
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
0 commit comments