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
* - 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`).
* Groups values according to an indicator function and returns group counts.
@@ -204,7 +213,6 @@ interface CountByAsync {
204
213
*
205
214
* - 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`).
206
215
*
207
-
*
208
216
* @param collection - input collection
209
217
* @param indicator - indicator function specifying which group an element in the input collection belongs to
210
218
* @param done - function to invoke upon completion
* Returns a function for grouping values according to an indicator function and returns group counts.
@@ -250,7 +258,6 @@ interface CountByAsync {
250
258
*
251
259
* - 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`).
252
260
*
253
-
*
254
261
* @param options - function options
255
262
* @param options.thisArg - execution context
256
263
* @param options.limit - maximum number of pending invocations at any one time
* Returns a function for grouping values according to an indicator function and returns group counts.
@@ -309,7 +316,6 @@ interface CountByAsync {
309
316
*
310
317
* - 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`).
311
318
*
312
-
*
313
319
* @param options - function options
314
320
* @param options.thisArg - execution context
315
321
* @param options.limit - maximum number of pending invocations at any one time
* - 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